Эх сурвалжийг харах

修改100推荐奖励的条件

lichunlei 3 жил өмнө
parent
commit
6eeeb27cb4
24 өөрчлөгдсөн 756 нэмэгдсэн , 15884 устгасан
  1. 7 2
      AppStart/Helper/AlipayPayBack2Service.cs
  2. 513 0
      AppStart/Helper/Profit/ProfitHelper.cs
  3. 17 73
      AppStart/Helper/StatService.cs
  4. 9 0
      AppStart/Tables/ProfitResult.cs
  5. 186 0
      AppStart/Timer/TradeStatTimer.cs
  6. 22 1
      Controllers/HomeController.cs
  7. 2 0
      Startup.cs
  8. BIN
      bin/Debug/netcoreapp3.0/MySystem.dll
  9. BIN
      bin/Debug/netcoreapp3.0/MySystem.pdb
  10. 0 20
      bin/Debug/netcoreapp3.0/log/Global全局异常处理日志/2022/3/13/content.log
  11. 0 20
      bin/Debug/netcoreapp3.0/log/SycnSpServer监控/2022/3/15/content.log
  12. 0 48
      bin/Debug/netcoreapp3.0/log/Tendis:Clear/2022/3/13/content.log
  13. 0 5
      bin/Debug/netcoreapp3.0/log/public_service/2022/3/15/content.log
  14. 0 4
      bin/Debug/netcoreapp3.0/log/sycn_sp_server_err/2022/3/15/content.log
  15. 0 12
      bin/Debug/netcoreapp3.0/log/服务商平台查询申请单状态API/2022/3/15/content.log
  16. 0 14978
      bin/Debug/netcoreapp3.0/log/补充交易数据/2022/4/6/content.log
  17. 0 361
      bin/Debug/netcoreapp3.0/log/补充商户数据/2022/4/6/content.log
  18. 0 360
      bin/Debug/netcoreapp3.0/log/补充绑定数据/2022/4/6/content.log
  19. BIN
      bin/release/netcoreapp3.0/MySystem.dll
  20. BIN
      bin/release/netcoreapp3.0/MySystem.pdb
  21. BIN
      obj/Debug/netcoreapp3.0/MySystem.dll
  22. BIN
      obj/Debug/netcoreapp3.0/MySystem.pdb
  23. BIN
      obj/release/netcoreapp3.0/MySystem.dll
  24. BIN
      obj/release/netcoreapp3.0/MySystem.pdb

+ 7 - 2
AppStart/Helper/AlipayPayBack2Service.cs

@@ -184,8 +184,13 @@ namespace MySystem
                                         int ParentUserId = user.ParentUserId;
                                         int machineCount = db.PosMachinesTwo.Count(m => m.UserId == ParentUserId && m.PosSnType == 0); //判断是否拥有3台购买机
                                         int ActiveCount = db.PosMachinesTwo.Count(m => m.UserId == ParentUserId && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
-                                        if (machineCount >= 3 || ActiveCount >= 3)
+                                        if (machineCount + ActiveCount >= 3)
                                         {
+                                            function.WriteLog("OrderId:" + OrderId, "推荐下单奖励监控日志");
+                                            function.WriteLog("order.Id:" + order.Id, "推荐下单奖励监控日志");
+                                            function.WriteLog("ParentUserId:" + ParentUserId, "推荐下单奖励监控日志");
+                                            function.WriteLog("order.UserId:" + order.UserId, "推荐下单奖励监控日志");
+                                            function.WriteLog("\r\n\r\n", "推荐下单奖励监控日志");
                                             UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == ParentUserId);
                                             if (account == null)
                                             {
@@ -222,7 +227,7 @@ namespace MySystem
                                             RedisDbconn.Instance.Set("UserAccount:" + ParentUserId, account);
 
                                             //推荐下单上级获得30天的机具循环天数
-                                            var posList = db.PosMachinesTwo.Select(m => new { m.Id, m.UserId, m.BindingState, m.RecycEndDate }).Where(m => m.UserId == ParentUserId && m.BindingState == 0 && m.RecycEndDate != null);
+                                            var posList = db.PosMachinesTwo.Select(m => new { m.Id, m.UserId, m.BindingState, m.RecycEndDate }).Where(m => m.UserId == ParentUserId && m.BindingState == 0 && m.RecycEndDate != null).ToList();
                                             foreach (var subPos in posList)
                                             {
                                                 PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == subPos.Id);

+ 513 - 0
AppStart/Helper/Profit/ProfitHelper.cs

@@ -1598,6 +1598,7 @@ namespace MySystem
                     K9:总交易额减去最大交易额的直推,大于32000万,则获得分红奖(月月红)直接级差
 
                 补贴:
+                    0押金无补贴
                     机具激活90天内,机具所属创客获得万10置顶
                     若创客为商户型创客,则机具UserId的创客获得万4分润
 
@@ -1755,6 +1756,518 @@ namespace MySystem
             }
             return result;
         }
+        public void StatProfit(string Month)
+        {
+            Thread th = new Thread(StatProfitDo);
+            th.IsBackground = true;
+            th.Start(Month);
+        }
+        public void StatProfitDo(object sender)
+        {
+            string Month = sender.ToString();
+            string check = function.ReadInstance("/ProfitStat/" + Month + ".txt");
+            if (!string.IsNullOrEmpty(check))
+            {
+                return;
+            }
+            function.WritePage("/ProfitStat/", Month + ".txt", DateTime.Now.ToString());
+            WebCMSEntities db = new WebCMSEntities();
+            for (int i = 1; i <= 3; i++) //品牌
+            {
+                for (int j = 0; j <= 1; j++) //卡类型
+                {
+                    List<ProfitResult> result = StartProftForPosByMonth(i, j, Month);
+                    foreach (ProfitResult sub in result)
+                    {
+                        int TopUserId = 0;
+                        if (!string.IsNullOrEmpty(sub.UserNav))
+                        {
+                            string[] UserNavList = sub.UserNav.Trim(',').Replace(",,", ",").Split(',');
+                            if (UserNavList.Length > 1)
+                            {
+                                TopUserId = int.Parse(UserNavList[1]);
+                            }
+                            else
+                            {
+                                TopUserId = int.Parse(UserNavList[0]);
+                            }
+                        }
+                        string RecordNo = "P" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8);
+                        decimal ProfitAmt = sub.Money;
+                        decimal TradeAmt = sub.TradeAmount;
+                        decimal ProfitRate = sub.ProfitRate;
+                        if (sub.IsSubsidy == 1 && j == 1)
+                        {
+                            decimal CreditTradeAmt = TradeAmt; //商户贷记卡交易总金额
+                            decimal QrCreditTradeAmt = 0; //商户(云闪付)贷记卡交易总金额
+                            decimal NonQrCreditTradeAmt = 0; //商户(非云闪付)贷记卡交易总金额
+                            decimal CreditProfitRate = 0; //(非云闪付)贷记卡交易分润比例
+                            decimal SubsidyProfit = 0; //商户(非云闪付)贷记卡交易分润补贴金额
+                            if (sub.QrPayFlag == 1)
+                            {
+                                QrCreditTradeAmt = TradeAmt; //商户(云闪付)贷记卡交易总金额
+                            }
+                            else
+                            { 
+                                NonQrCreditTradeAmt = TradeAmt; //商户(非云闪付)贷记卡交易总金额
+                                CreditProfitRate = ProfitRate; //(非云闪付)贷记卡交易分润比例
+                                SubsidyProfit = ProfitAmt; //商户(非云闪付)贷记卡交易分润补贴金额
+                            }
+                            MachineForSnNo forSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == sub.PosSn) ?? new MachineForSnNo();
+                            PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == forSnNo.SnId) ?? new PosMachinesTwo(); 
+                            PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == sub.MerchantId) ?? new PosMerchantInfo(); 
+                            db.ProfitSubsidyDetail.Add(new ProfitSubsidyDetail()
+                            {
+                                CreateDate = DateTime.Now,
+                                UpdateDate = DateTime.Now,
+                                RecordNo = RecordNo, //流水号
+                                BrandId = sub.BrandId, //品牌
+                                ProductName = RelationClass.GetKqProductBrandInfo(sub.BrandId), //产品名称
+                                TradeMonth = Month, //交易月份
+                                MerchantId = sub.MerchantId, //商户
+                                MerNo = merchant.KqMerNo, //渠道商户编号
+                                SnNo = sub.PosSn, //渠道SN号
+                                MerRegTime = pos.BindingTime, //渠道注册时间
+                                MerStandardDate = merchant.MerStandardDate, //商户激活时间
+                                BelongUserId = merchant.UserId, //商户归属人
+                                MerHelpFlag = sub.HelpFlag == 1 ? 1u : 0u, //是否属于扶持周期内商户
+                                SubsidyUserId = sub.UserId, //补贴人
+                                SubsidyType = sub.DirectFlag, //分润补贴类型
+                                SubsidyProfitRate = sub.Money, //创客活动期内直营商户分润万分之十
+                                CreditTradeAmt = CreditTradeAmt, //商户贷记卡交易总金额
+                                QrCreditTradeAmt = QrCreditTradeAmt, //商户(云闪付)贷记卡交易总金额
+                                NonQrCreditTradeAmt = NonQrCreditTradeAmt, //商户(非云闪付)贷记卡交易总金额
+                                CreditProfitRate = CreditProfitRate, //(非云闪付)贷记卡交易分润比例
+                                SubsidyProfit = SubsidyProfit, //商户(非云闪付)贷记卡交易分润补贴金额
+                            });
+                            db.SaveChanges();
+                        }
+                        else
+                        {
+                            decimal CreditTradeAmt = 0;
+                            decimal CreditTradeProfit = 0;
+                            decimal QrCreditTradeAmt = 0;
+                            decimal QrCreditProfitRate = 0;
+                            decimal QrCreditProfitStandardRate = 0;
+                            decimal QrCreditAddOrSubRate = 0;
+                            decimal QrCreditTradeProfit = 0;
+                            decimal NonQrCreditTradeAmt = 0;
+                            decimal NotHelpCreditTradeAmt = 0;
+                            decimal NotHelpCreditTradeProfit = 0;
+                            decimal NotHelpCreditProfitRate = 0;
+                            decimal NotHelpCreditProfitStandardRate = 0;
+                            decimal NotHelpCreditAddOrSubRate = 0;
+                            decimal HelpCreditTradeAmt = 0;
+                            decimal NonQrCreditTradeProfit = 0;
+                            decimal HelpCreditTradeProfit = 0;
+                            decimal HelpCreditProfitRate = 0;
+                            decimal HelpCreditProfitStandardRate = 0;
+                            decimal HelpCreditAddOrSubRate = 0;
+                            decimal DebitNonCapTradeAmt = 0;
+                            decimal DebitCapTradeAmt = 0;
+                            decimal QrDebitNotCapTradeAmt = 0;
+                            decimal NonQrDebitNotCapTradeAmt = 0;
+                            decimal NotHelpDebitNonCapTradeAmt = 0;
+                            decimal HelpDebitNonCapTradeAmt = 0;
+                            decimal DebitNonTradeCapProfit = 0;
+                            decimal QrDebitNonTradeCapProfit = 0;
+                            decimal NonQrDebitNonTradeCapProfit = 0;
+                            decimal NotHelpDebitNonTradeCapProfit = 0;
+                            decimal HelpDebitNonTradeCapProfit = 0;
+                            decimal DebitTradeCapProfit = 0;
+                            decimal NotHelpDebitProfitRate = 0;
+                            decimal NotHelpDebitProfitStandardRate = 0;
+                            decimal NotHelpDebitAddOrSubRate = 0;
+                            decimal HelpDebitProfitRate = 0;
+                            decimal HelpDebitProfitStandardRate = 0;
+                            decimal HelpDebitAddOrSubRate = 0;
+                            decimal DebitCapSingleReward = 0;
+                            decimal QrDebitProfitRate = 0;
+                            decimal QrDebitProfitStandardRate = 0;
+                            decimal QrDebitAddOrSubRate = 0;
+                            if (j == 1)
+                            {
+                                CreditTradeAmt = TradeAmt; //贷记卡交易总金额
+                                CreditTradeProfit = ProfitAmt; //贷记卡分润总金额
+                                if (sub.QrPayFlag == 1)
+                                {
+                                    QrCreditTradeAmt = TradeAmt; //(云闪付)贷记卡交易总金额
+                                    QrCreditProfitRate = ProfitRate; //(云闪付)贷记卡交易分润比例
+                                    QrCreditTradeProfit = ProfitAmt; //(云闪付)贷记卡交易分润
+                                }
+                                else
+                                {
+                                    NonQrCreditTradeAmt = TradeAmt; //(非云闪付)贷记卡交易总金额
+                                    NonQrCreditTradeProfit = ProfitAmt; //(非云闪付)贷记卡交易分润
+                                    if(sub.HelpFlag == 1)
+                                    {
+                                        HelpCreditTradeProfit = ProfitAmt; //(扶持期)(非云闪付)贷记卡分润总金额
+                                        HelpCreditProfitRate = ProfitRate; //(扶持期)(非云闪付)贷记卡商户交易对应分润比例
+                                        HelpCreditTradeAmt = TradeAmt; //(扶持期)(非云闪付)贷记卡交易总金额
+                                    }
+                                    else
+                                    {
+                                        NotHelpCreditTradeAmt = TradeAmt; //(非扶持期)(非云闪付)贷记卡交易总金额
+                                        NotHelpCreditTradeProfit = ProfitAmt; //(非扶持期)(非云闪付)贷记卡分润总金额
+                                        NotHelpCreditProfitRate = ProfitRate; //(非扶持期)(非云闪付)贷记卡商户交易对应分润比例
+                                    }
+                                }
+                            }
+                            if (j == 0)
+                            {
+                                if (sub.Money < 1)
+                                {
+                                    DebitNonCapTradeAmt = TradeAmt; //商户非封顶借记卡交易总额
+                                    DebitNonTradeCapProfit = ProfitAmt; //借记卡非封顶交易分润总金额
+                                }
+                                else
+                                {
+                                    DebitCapTradeAmt = TradeAmt; //商户借记卡封顶交易总额
+                                    DebitCapSingleReward = ProfitAmt; //借记卡合伙人直营封顶交易奖励金额
+                                    DebitTradeCapProfit = ProfitAmt; //借记卡封顶交易分润总金额
+                                }
+                                if (sub.QrPayFlag == 1)
+                                {
+                                    if (sub.Money < 1)
+                                    {
+                                        QrDebitNotCapTradeAmt = TradeAmt; //(云闪付)商户非封顶借记卡交易总额
+                                        QrDebitProfitRate = ProfitRate; //(云闪付)借记卡非封顶交易分润比例
+                                        QrDebitNonTradeCapProfit = ProfitAmt; //(云闪付)借记卡非封顶交易分润总金额
+                                    }
+                                }
+                                else
+                                {
+                                    if (sub.Money < 1)
+                                    {
+                                        NonQrDebitNonTradeCapProfit = ProfitAmt; //(非云闪付)借记卡非封顶交易分润总金额
+                                        NonQrDebitNotCapTradeAmt = TradeAmt; //(非云闪付)商户非封顶借记卡交易总额
+                                    }
+                                    if (sub.HelpFlag == 1)
+                                    {
+                                        if (sub.Money < 1)
+                                        {
+                                            HelpDebitNonCapTradeAmt = TradeAmt; //(扶持期)(非云闪付)借记卡非封顶交易总金额
+                                            HelpDebitNonTradeCapProfit = ProfitAmt; //(扶持期)(非云闪付)借记卡非封顶交易分润总金额
+                                        }
+                                        HelpDebitProfitRate = ProfitRate; //(扶持期)(非云闪付)借记卡商户交易对应分润比例
+                                    }
+                                    else
+                                    {
+                                        if (sub.Money < 1)
+                                        {
+                                            NotHelpDebitNonCapTradeAmt = TradeAmt; //(非扶持期)(非云闪付)借记卡非封顶交易总金额
+                                            NotHelpDebitNonTradeCapProfit = ProfitAmt; //(非扶持期)(非云闪付)借记卡非封顶交易分润总金额
+                                        }
+                                        NotHelpDebitProfitRate = ProfitRate; //(非扶持期)(非云闪付)借记卡商户交易对应分润比例
+                                    }
+                                }
+                            }
+                            db.ProfitRewardRecord.Add(new ProfitRewardRecord()
+                            {
+                                CreateDate = DateTime.Now,
+                                UpdateDate = DateTime.Now,
+                                UserId = sub.UserId, //创客
+                                MerchantId = sub.MerchantId, //商户
+                                BrandId = sub.BrandId, //品牌
+                                ProfitType = sub.DirectFlag, //创客分润类型
+                                TradeAmt = sub.TradeAmount, //商户交易总额
+                                TradeProfit = sub.Money, //交易分润
+                                TradeMonth = Month, //交易月
+                                RecordNo = RecordNo, //记录单号
+                                TopUserId = TopUserId, //顶级创客
+                                CreditTradeAmt = CreditTradeAmt, //贷记卡交易总金额
+                                QrCreditTradeAmt = QrCreditTradeAmt, //(云闪付)贷记卡交易总金额
+                                NonQrCreditTradeAmt = NonQrCreditTradeAmt, //(非云闪付)贷记卡交易总金额
+                                NotHelpCreditTradeAmt = NotHelpCreditTradeAmt, //(非扶持期)(非云闪付)贷记卡交易总金额
+                                HelpCreditTradeAmt = HelpCreditTradeAmt, //(扶持期)(非云闪付)贷记卡交易总金额
+                                DebitNonCapTradeAmt = DebitNonCapTradeAmt, //商户非封顶借记卡交易总额
+                                QrDebitNotCapTradeAmt = QrDebitNotCapTradeAmt, //(云闪付)商户非封顶借记卡交易总额
+                                NonQrDebitNotCapTradeAmt = NonQrDebitNotCapTradeAmt, //(非云闪付)商户非封顶借记卡交易总额
+                                NotHelpDebitNonCapTradeAmt = NotHelpDebitNonCapTradeAmt, //(非扶持期)(非云闪付)借记卡非封顶交易总金额
+                                HelpDebitNonCapTradeAmt = HelpDebitNonCapTradeAmt, //(扶持期)(非云闪付)借记卡非封顶交易总金额
+                                DebitCapTradeAmt = DebitCapTradeAmt, //商户借记卡封顶交易总额
+                                CreditTradeProfit = CreditTradeProfit, //贷记卡分润总金额
+                                QrCreditTradeProfit = QrCreditTradeProfit, //(云闪付)贷记卡交易分润
+                                NonQrCreditTradeProfit = NonQrCreditTradeProfit, //(非云闪付)贷记卡交易分润
+                                NotHelpCreditTradeProfit = NotHelpCreditTradeProfit, //(非扶持期)(非云闪付)贷记卡分润总金额
+                                HelpCreditTradeProfit = HelpCreditTradeProfit, //(扶持期)(非云闪付)贷记卡分润总金额
+                                DebitNonTradeCapProfit = DebitNonTradeCapProfit, //借记卡非封顶交易分润总金额
+                                QrDebitNonTradeCapProfit = QrDebitNonTradeCapProfit, //(云闪付)借记卡非封顶交易分润总金额
+                                NonQrDebitNonTradeCapProfit = NonQrDebitNonTradeCapProfit, //(非云闪付)借记卡非封顶交易分润总金额
+                                NotHelpDebitNonTradeCapProfit = NotHelpDebitNonTradeCapProfit, //(非扶持期)(非云闪付)借记卡非封顶交易分润总金额
+                                HelpDebitNonTradeCapProfit = HelpDebitNonTradeCapProfit, //(扶持期)(非云闪付)借记卡非封顶交易分润总金额
+                                DebitTradeCapProfit = DebitTradeCapProfit, //借记卡封顶交易分润总金额
+                                NotHelpCreditProfitRate = NotHelpCreditProfitRate, //(非扶持期)(非云闪付)贷记卡商户交易对应分润比例
+                                NotHelpCreditProfitStandardRate = NotHelpCreditProfitStandardRate, //(非扶持期)(非云闪付)贷记卡标准分润比例
+                                NotHelpCreditAddOrSubRate = NotHelpCreditAddOrSubRate, //(非扶持期)(非云闪付)贷记卡成本或增或减比例
+                                HelpCreditProfitRate = HelpCreditProfitRate, //(扶持期)(非云闪付)贷记卡商户交易对应分润比例
+                                HelpCreditProfitStandardRate = HelpCreditProfitStandardRate, //(扶持期)(非云闪付)贷记卡-标准分润比例
+                                HelpCreditAddOrSubRate = HelpCreditAddOrSubRate, //(扶持期)(非云闪付)贷记卡成本或增或减比例
+                                NotHelpDebitProfitRate = NotHelpDebitProfitRate, //(非扶持期)(非云闪付)借记卡商户交易对应分润比例
+                                NotHelpDebitProfitStandardRate = NotHelpDebitProfitStandardRate, //(非扶持期)(非云闪付)借记卡标准分润比例
+                                NotHelpDebitAddOrSubRate = NotHelpDebitAddOrSubRate, //(非扶持期)(非云闪付)借记卡成本或增或减比例
+                                HelpDebitProfitRate = HelpDebitProfitRate, //(扶持期)(非云闪付)借记卡商户交易对应分润比例
+                                HelpDebitProfitStandardRate = HelpDebitProfitStandardRate, //(扶持期)(非云闪付)借记卡-标准分润比例
+                                HelpDebitAddOrSubRate = HelpDebitAddOrSubRate, //(扶持期)(非云闪付)借记卡成本或增或减比例
+                                DebitCapSingleReward = DebitCapSingleReward, //借记卡合伙人直营封顶交易奖励金额
+                                QrCreditProfitRate = QrCreditProfitRate, //(云闪付)贷记卡交易分润比例
+                                QrCreditProfitStandardRate = QrCreditProfitStandardRate, //(云闪付)贷记卡分润基准
+                                QrCreditAddOrSubRate = QrCreditAddOrSubRate, //(云闪付)贷记卡分润比例或增或减
+                                QrDebitProfitRate = QrDebitProfitRate, //(云闪付)借记卡非封顶交易分润比例
+                                QrDebitProfitStandardRate = QrDebitProfitStandardRate, //(云闪付)借记卡非封顶交易分润基准
+                                QrDebitAddOrSubRate = QrDebitAddOrSubRate, //(云闪付)借记卡非封顶交易分润比例或增或减
+                            });
+                            db.SaveChanges();
+                        }
+                    }
+                }
+            }
+            db.Dispose();
+        }
+        public List<ProfitResult> StartProftForPosByMonth(int BrandId, int BankCardType, string Month)
+        {
+            // 级差
+            /*   
+                
+                K1 - K5:无大小市场要求,无押机分润比例为有押金机的70%,如K1的有押金机分润比例为万6,则无押机的分润比例为万4.2
+                                      机具激活大于90天,分润比例为原比例的70%
+
+                        if(is0y){
+                            分润比例为原比例的70%
+                        }
+                        if(ActivityDate > now - 90){
+                            分润比例为原比例的70%
+                        }
+                K6 - K9:
+                    K6:至少有1个直推大于3000万,且总交易额减去3000万大于1200万,则获得分红奖(月月红)直接级差
+                    K7:总交易额减去最大交易额的直推,大于4000万,则获得分红奖(月月红)直接级差
+                    K8:总交易额减去最大交易额的直推,大于12000万,则获得分红奖(月月红)直接级差
+                    K9:总交易额减去最大交易额的直推,大于32000万,则获得分红奖(月月红)直接级差
+
+                补贴:
+                    0押金无补贴
+                    机具激活90天内,机具所属创客获得万10置顶
+                    若创客为商户型创客,则机具UserId的创客获得万4分润
+
+                    select u.MakerCode,u.RealName,u.UserLevel,(case when ProfitType=1 then '直营' else '团队' end) as DirectFlag,
+                    k.Name,CreditTradeAmt,CreditTradeProfit,DebitTradeAmt,DebitTradeProfit,QrCreditTradeAmt,QrCreditTradeProfit from (
+                    select UserId,ProfitType,BrandId,
+                    sum(CreditTradeAmt) as CreditTradeAmt,
+                    sum(CreditTradeProfit) as CreditTradeProfit,
+                    sum(DebitNonCapTradeAmt+DebitCapTradeAmt) as DebitTradeAmt,
+                    sum(DebitNonTradeCapProfit+DebitTradeCapProfit) as DebitTradeProfit,
+                    sum(QrCreditTradeAmt) as QrCreditTradeAmt,
+                    sum(QrCreditTradeProfit) as QrCreditTradeProfit
+                    from ProfitRewardRecord 
+                    GROUP BY UserId,ProfitType,BrandId
+                    ) tb left join Users u on tb.UserId=u.Id LEFT JOIN KqProducts k ON k.Id=tb.BrandId
+
+
+                    select u.MakerCode,u.RealName,u.UserLevel,m.KqMerNo,m.MerchantName,(case when SubsidyType=1 then '直营' else '团队' end) as DirectFlag,
+                    k.Name,CreditTradeAmt,SubsidyProfit from (
+                    select SubsidyUserId,MerchantId,BrandId,SubsidyType,
+                    sum(CreditTradeAmt) as CreditTradeAmt,
+                    sum(SubsidyProfit) as SubsidyProfit
+                    from ProfitSubsidyDetail 
+                    GROUP BY SubsidyUserId,MerchantId,BrandId,SubsidyType
+                    ) tb left join Users u on tb.SubsidyUserId=u.Id LEFT JOIN KqProducts k ON k.Id=tb.BrandId left join PosMerchantInfo m on tb.MerchantId=m.Id
+
+            */
+
+
+            List<ProfitResult> result = new List<ProfitResult>();
+            ProfitObjects obj = RedisDbconn.Instance.Get<ProfitObjects>("pobj" + BrandId);
+            if (obj.Status == 1) //判断分润是否开启
+            {
+                string start = Month.Substring(0, 4) + "-" + Month.Substring(4, 2) + "-01 00:00:00";
+                string end = DateTime.Parse(start).AddMonths(1).ToString("yyyy-MM-dd HH:mm:ss");
+                DataTable dt = new DataTable();
+                if (BankCardType == 1)
+                {
+                    dt = dbconn.dtable("select SnNo,QrPayFlag,sum(TradeAmount) from TradeRecordTest where CreateDate>='" + start + "' and CreateDate<'" + end + "' and BankCardType=1 and BrandId=" + BrandId + " group by SnNo,QrPayFlag");
+                }
+                if (BankCardType == 0)
+                {
+                    dt = dbconn.dtable("select SnNo,QrPayFlag,TradeAmount from TradeRecordTest where CreateDate>='" + start + "' and CreateDate<'" + end + "' and BankCardType=0 and BrandId=" + BrandId + "");
+                }
+                foreach (DataRow dr in dt.Rows)
+                {
+                    WebCMSEntities dbnew = new WebCMSEntities();
+                    try
+                    {
+                        string SnNo = dr["SnNo"].ToString();
+                        MachineForSnNo forSnNo = dbnew.MachineForSnNo.FirstOrDefault(m => m.SnNo == SnNo) ?? new MachineForSnNo();
+                        PosMachinesTwo pos = dbnew.PosMachinesTwo.FirstOrDefault(m => m.Id == forSnNo.SnId) ?? new PosMachinesTwo();
+                        decimal Deposit = decimal.Parse(function.CheckNum(pos.SeoKeyword));
+                        int UserId = pos.UserId;
+                        int MerchantTypeUserId = int.Parse(function.CheckInt(pos.SeoTitle));
+                        if (MerchantTypeUserId > 0)
+                        {
+                            Users merchantUser = dbnew.Users.FirstOrDefault(m => m.Id == MerchantTypeUserId && m.MerchantType == 1);
+                            if (merchantUser != null)
+                            {
+                                UserId = MerchantTypeUserId;
+                            }
+                        }
+                        if (pos.BindingState == 1)
+                        {
+                            int QrPayFlag = int.Parse(dr["QrPayFlag"].ToString());
+                            decimal TradeAmt = decimal.Parse(dr[2].ToString());
+                            List<UserLevelSet> levels = dbnew.UserLevelSet.ToList();
+                            Users selfUser = dbnew.Users.FirstOrDefault(m => m.Id == UserId) ?? new Users();
+                            int Days = int.Parse(RedisDbconn.Instance.Get<string>("pobjrule:" + BrandId + ":HelpPolicy:Days")); //天数
+                            if (BankCardType == 0)
+                            {
+                                int UserLevel = selfUser.UserLevel; //当前会员等级
+                                int HelpTime = 0; //扶持期-1,稳定期=0
+                                if (pos.BindingTime.Value.AddDays(Days) > DateTime.Now && Deposit > 0)
+                                {
+                                    HelpTime = 1;
+                                }
+                                // int LevelKindId = GetLevelKindId(BrandId, HelpTime, 0);
+                                // ProfitObjectLevels objlevel = RedisDbconn.Instance.Get<ProfitObjectLevels>("pobjlv" + LevelKindId + ":" + UserLevel); //获取当前等级参数
+                                decimal getLevelProfit = TradeAmt * 0.0006M;
+                                if (getLevelProfit > 1) getLevelProfit = 1;
+                                result.Add(new ProfitResult()
+                                {
+                                    UserId = selfUser.Id,
+                                    UserNav = selfUser.ParentNav,
+                                    Money = getLevelProfit,
+                                    ProfitRate = 0.0006M,
+                                    Message = "储蓄卡分润",
+                                    BankCardType = BankCardType,
+                                    QrPayFlag = QrPayFlag,
+                                    BrandId = pos.BrandId,
+                                    DirectFlag = 1,
+                                    IsSubsidy = 0,
+                                    MerchantId = pos.BindMerchantId,
+                                    TradeAmount = TradeAmt,
+                                    HelpFlag = HelpTime,
+                                    PosSn = pos.PosSn,
+                                });
+                            }
+                            else
+                            {
+                                int maxLevel = obj.MaxLevel; //最大等级
+                                decimal diffLevelProfit = 0;  //等级级差
+                                int curLevel = 0; //当前层级的会员等级
+                                string ParentNav = selfUser.ParentNav;
+                                if (UserId != pos.UserId)
+                                {
+                                    Users user = dbnew.Users.FirstOrDefault(m => m.Id == pos.UserId);
+                                    if (user != null)
+                                    { 
+                                        ParentNav = user.ParentNav;
+                                        UserId = pos.UserId;
+                                    }
+                                }
+                                if (!string.IsNullOrEmpty(ParentNav))
+                                {
+                                    ParentNav += "," + UserId + ",";
+                                    string[] ParentNavList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
+                                    Array.Reverse(ParentNavList); //反转顺序
+                                    int level = 0;
+                                    foreach (string UserIdString in ParentNavList)
+                                    {
+                                        level += 1;
+                                        int uid = int.Parse(UserIdString);
+                                        Users user = dbnew.Users.FirstOrDefault(m => m.Id == uid) ?? new Users();
+                                        int UserLevel = user.UserLevel; //当前会员等级
+                                        if (UserLevel == maxLevel && UserLevel == curLevel) //判断当前创客是否有直推的激活机具,并且在活动时间内
+                                        {
+                                            break;
+                                        }
+                                        if (UserLevel <= maxLevel && UserLevel > curLevel)
+                                        {
+                                            int HelpTime = 0; //扶持期-1,稳定期=0
+                                            if (pos.BindingTime.Value.AddDays(Days) > DateTime.Now && Deposit > 0)
+                                            {
+                                                HelpTime = 1;
+                                            }
+                                            int LevelKindId = GetLevelKindId(BrandId, HelpTime, 1);
+                                            ProfitObjectLevels objlevel = RedisDbconn.Instance.Get<ProfitObjectLevels>("pobjlv" + LevelKindId + ":" + UserLevel); //获取当前等级参数
+                                            if (objlevel != null)
+                                            {
+                                                decimal getLevelProfit = 0;  //等级分润
+                                                if (objlevel.Percents > 0)
+                                                {
+                                                    //获取创客分润规则,注册日开始算起,3个自然月内算扶持期
+                                                    getLevelProfit += TradeAmt * objlevel.Percents;
+                                                }
+                                                if (objlevel.AddProfitVal > 0)
+                                                {
+                                                    getLevelProfit += objlevel.AddProfitVal;
+                                                }
+                                                decimal money = getLevelProfit;
+                                                getLevelProfit -= diffLevelProfit;
+                                                if (objlevel.LevelDiff == 1)  //判断是否有级差
+                                                {
+                                                    diffLevelProfit = money;
+                                                }
+                                                if (getLevelProfit >= obj.MinProfitVal)
+                                                {
+                                                    result.Add(new ProfitResult()
+                                                    {
+                                                        UserId = user.Id,
+                                                        UserNav = user.ParentNav,
+                                                        Money = getLevelProfit,
+                                                        ProfitRate = objlevel.Percents,
+                                                        Message = "交易分润",
+                                                        BankCardType = BankCardType,
+                                                        QrPayFlag = QrPayFlag,
+                                                        DirectFlag = selfUser.Id == user.Id ? 1 : 0,
+                                                        BrandId = pos.BrandId,
+                                                        IsSubsidy = 0,
+                                                        MerchantId = pos.BindMerchantId,
+                                                        TradeAmount = TradeAmt,
+                                                        HelpFlag = HelpTime,
+                                                        PosSn = pos.PosSn,
+                                                    });
+                                                }
+
+                                                //分润补贴
+                                                if (HelpTime == 1 && level == 1)
+                                                {
+                                                    decimal otherPercent = 0.001M - objlevel.Percents;
+                                                    decimal otherMoney = TradeAmt * otherPercent;
+                                                    if (otherMoney >= obj.MinProfitVal)
+                                                    {
+                                                        result.Add(new ProfitResult()
+                                                        {
+                                                            UserId = user.Id,
+                                                            UserNav = user.ParentNav,
+                                                            Money = otherMoney,
+                                                            ProfitRate = otherPercent,
+                                                            Message = "分润补贴",
+                                                            BankCardType = BankCardType,
+                                                            QrPayFlag = QrPayFlag,
+                                                            DirectFlag = 1,
+                                                            BrandId = pos.BrandId,
+                                                            IsSubsidy = 1,
+                                                            MerchantId = pos.BindMerchantId,
+                                                            TradeAmount = TradeAmt,
+                                                            HelpFlag = HelpTime,
+                                                            PosSn = pos.PosSn,
+                                                        });
+                                                    }
+                                                }
+                                            }
+                                        }
+                                        curLevel = UserLevel;
+                                    }
+                                }
+                            }
+                        }
+                    }
+                    catch (Exception ex)
+                    {
+                        function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "每月统计分润异常");
+                    }
+                    dbnew.Dispose();
+                }
+            }
+            return result;
+        }
         #endregion
 
 

+ 17 - 73
AppStart/Helper/StatService.cs

@@ -188,86 +188,30 @@ namespace MySystem
         // 2. 每天统计前一天的交易额,每笔交易判断商户号的所属人是商户型创客,如果是,则从此人开始累计交易额,若不是,则从此人上级开始累计交易额 
         public void dosomething2(string date)
         {
-            WebCMSEntities db = new WebCMSEntities();
             string yesterday = date + " 00:00:00";
             string today = DateTime.Parse(date).AddDays(1).ToString("yyyy-MM-dd") + " 00:00:00";
             string TradeMonth = DateTime.Parse(date).ToString("yyyyMM");
             string TradeDate = DateTime.Parse(date).ToString("yyyyMMdd");
-            DataTable dt = dbconn.dtable("select UserId,BrandId,MerchantId,QrPayFlag,sum(TradeAmount) from TradeRecord where CreateDate>='" + yesterday + "' and CreateDate<'" + today + "' group by UserId,BrandId,MerchantId,QrPayFlag");
+            DataTable dt = dbconn.dtable("select UserId,BrandId,MerchantId,BankCardType,QrPayFlag,sum(TradeAmount) from TradeRecord where CreateDate>='" + yesterday + "' and CreateDate<'" + today + "' group by UserId,BrandId,MerchantId,BankCardType,QrPayFlag");
             foreach (DataRow dr in dt.Rows)
             {
                 int UserId = int.Parse(dr["UserId"].ToString()); //创客ID
                 int BrandId = int.Parse(dr["BrandId"].ToString()); //品牌
                 int MerchantId = int.Parse(dr["MerchantId"].ToString()); //商户Id
+                int BankCardType = int.Parse(dr["BankCardType"].ToString()); //卡类型
                 int QrPayFlag = int.Parse(dr["QrPayFlag"].ToString()); //云闪付
-                decimal TradeAmount = decimal.Parse(dr[4].ToString()); //当日交易额
-                PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == MerchantId) ?? new PosMerchantInfo();
-                MachineForMerNo machineFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == merchant.KqMerNo) ?? new MachineForMerNo();
-                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineFor.SnId) ?? new PosMachinesTwo();
-                int MerchantTypeUserId = int.Parse(function.CheckInt(pos.SeoTitle));
-                if (MerchantTypeUserId > 0)
-                {
-                    Users merchantUser = db.Users.FirstOrDefault(m => m.Id == MerchantTypeUserId && m.MerchantType == 1);
-                    if (merchantUser != null)
-                    {
-                        UserId = MerchantTypeUserId;
-                    }
-                }
-                RedisDbconn.Instance.AddNumber("MerTotalAmount:" + MerchantId, TradeAmount);
-                RedisDbconn.Instance.AddNumber("MerTotalAmount:" + MerchantId + ":" + TradeMonth, TradeAmount); //商户当月交易
-                RedisDbconn.Instance.AddNumber("MerTotalAmount:" + MerchantId + ":" + TradeDate, TradeAmount); //商户当日交易
-                int Level = 0;
-                while (UserId > 0)
-                {
-                    Level += 1;
-                    Users user = db.Users.FirstOrDefault(m => m.Id == UserId);
-                    if (user != null)
-                    {
-                        if (user.AuthFlag == 1)
-                        {
-                            if (Level == 1)
-                            {
-                                RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId, TradeAmount); //总交易
-                                RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + TradeDate, TradeAmount); //总交易
-                                RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + TradeMonth, TradeAmount); //总交易
-                                RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + BrandId + ":" + TradeDate, TradeAmount); //总交易
-                                RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + BrandId + ":" + TradeMonth, TradeAmount); //总交易
-                                if (QrPayFlag == 1)
-                                {
-                                    RedisDbconn.Instance.AddNumber("TotalCloudPayAmount:" + UserId + ":" + TradeDate, TradeAmount); //云闪付小额交易额
-                                    RedisDbconn.Instance.AddNumber("TotalCloudPayAmount:" + UserId + ":" + TradeMonth, TradeAmount); //云闪付小额交易额
-                                }
-                                else
-                                {
-                                    RedisDbconn.Instance.AddNumber("TotalPosAmount:" + UserId + ":" + TradeDate, TradeAmount); //POS机刷卡交易额
-                                    RedisDbconn.Instance.AddNumber("TotalPosAmount:" + UserId + ":" + TradeMonth, TradeAmount); //POS机刷卡交易额
-                                }
-                            }
-                            RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + UserId, TradeAmount); //总交易
-                            RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + UserId + ":" + TradeDate, TradeAmount); //总交易
-                            RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + UserId + ":" + TradeMonth, TradeAmount); //总交易
-                            RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + UserId + ":" + BrandId + ":" + TradeDate, TradeAmount); //总交易
-                            RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + UserId + ":" + BrandId + ":" + TradeMonth, TradeAmount); //总交易
-                            if (QrPayFlag == 1)
-                            {
-                                RedisDbconn.Instance.AddNumber("TeamTotalCloudPayAmount:" + UserId + ":" + TradeDate, TradeAmount); //云闪付小额交易额
-                                RedisDbconn.Instance.AddNumber("TeamTotalCloudPayAmount:" + UserId + ":" + TradeMonth, TradeAmount); //云闪付小额交易额
-                            }
-                            else
-                            {
-                                RedisDbconn.Instance.AddNumber("TeamTotalPosAmount:" + UserId + ":" + TradeDate, TradeAmount); //POS机刷卡交易额
-                                RedisDbconn.Instance.AddNumber("TeamTotalPosAmount:" + UserId + ":" + TradeMonth, TradeAmount); //POS机刷卡交易额
-                            }
-                        }
-                        UserId = user.ParentUserId;
-                    }
-                    else
-                    {
-                        UserId = 0;
-                    }
-                }
+                decimal TradeAmount = decimal.Parse(dr[5].ToString()); //当日交易额
+                string content = "{";
+                content += "\"DateString\":\"" + date + "\",";
+                content += "\"UserId\":\"" + UserId + "\",";
+                content += "\"BrandId\":\"" + BrandId + "\",";
+                content += "\"MerchantId\":\"" + MerchantId + "\",";
+                content += "\"BankCardType\":\"" + BankCardType + "\",";
+                content += "\"QrPayFlag\":\"" + QrPayFlag + "\",";
+                content += "\"TradeAmount\":\"" + TradeAmount + "\"";
+                content += "}";
+                RedisDbconn.Instance.AddList("TradeStatQueue", content);                
             }
-            db.Dispose();
         }
 
         // 3. 前一天的激活记录,根据创客类型,如果是商户型创客,则激活奖励的起始人从此人上级计算。如果不是,则从此人开始计算
@@ -652,7 +596,7 @@ namespace MySystem
                                                 int ActiveCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
                                                 // int BigCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.BrandId == 3); //判断是否拥有2台大机
                                                 // int BigActiveCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.ActivationState == 1 && m.BrandId == 3); //判断是否拥有2台激活大机(不限购买或赠送)
-                                                if (machineCount >= 3 || ActiveCount >= 3)
+                                                if (machineCount + ActiveCount >= 3)
                                                 {
                                                     int pTopUserId = 0;
                                                     if (!string.IsNullOrEmpty(puser.ParentNav))
@@ -827,9 +771,9 @@ namespace MySystem
                                     {
                                         int machineCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.PosSnType == 0); //判断是否拥有3台购买机
                                         int ActiveCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
-                                        int BigCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.BrandId == 3); //判断是否拥有2台大机
-                                        int BigActiveCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.ActivationState == 1 && m.BrandId == 3); //判断是否拥有2台激活大机(不限购买或赠送)
-                                        if (machineCount >= 3 || ActiveCount >= 3 || BigCount >= 2 || BigActiveCount >= 2)
+                                        // int BigCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.BrandId == 3); //判断是否拥有2台大机
+                                        // int BigActiveCount = db.PosMachinesTwo.Count(m => m.UserId == puser.Id && m.ActivationState == 1 && m.BrandId == 3); //判断是否拥有2台激活大机(不限购买或赠送)
+                                        if (machineCount + ActiveCount >= 3)
                                         {
                                             int pTopUserId = 0;
                                             if (!string.IsNullOrEmpty(puser.ParentNav))

+ 9 - 0
AppStart/Tables/ProfitResult.cs

@@ -8,6 +8,15 @@ namespace MySystem
         public int MachineCount { get; set; }
         public string UserNav { get; set; }
         public string Message { get; set; }
+        public int BankCardType { get; set; }
+        public int QrPayFlag { get; set; }
+        public int DirectFlag { get; set; }
+        public int BrandId { get; set; }
+        public int IsSubsidy { get; set; } //是否补贴
+        public int HelpFlag { get; set; }
+        public int MerchantId { get; set; }
+        public decimal TradeAmount { get; set; }
+        public string PosSn { get; set; }
         public decimal ProfitRate { get; set; } //创客预设分润比例
         public decimal ProfitPercent { get; set; } //创客预设分润百分比
         public decimal AddOrSubRate { get; set; } //浮动空间

+ 186 - 0
AppStart/Timer/TradeStatTimer.cs

@@ -0,0 +1,186 @@
+using System;
+using System.Collections.Generic;
+using System.Threading;
+using System.Threading.Tasks;
+using System.Linq;
+using Microsoft.Extensions.Hosting;
+using MySystem;
+using MySystem.PxcModels;
+using LitJson;
+using Library;
+
+public class TradeStatTimer
+{
+    public readonly static TradeStatTimer Instance = new TradeStatTimer();
+    private TradeStatTimer()
+    {
+    }
+    
+    public void Start()
+    {
+        Thread th = new Thread(DoWorks);
+        th.IsBackground = true;
+        th.Start();
+    }
+
+    private void DoWorks()
+    {
+        while (true)
+        {
+            string content = RedisDbconn.Instance.RPop<string>("TradeStatQueue");
+            if (!string.IsNullOrEmpty(content))
+            {
+                JsonData jsonObj = JsonMapper.ToObject(content);
+                string DateString = jsonObj["DateString"].ToString();
+                int UserId = int.Parse(jsonObj["UserId"].ToString()); //创客ID
+                int BrandId = int.Parse(jsonObj["BrandId"].ToString()); //品牌
+                int BankCardType = int.Parse(jsonObj["BankCardType"].ToString()); //卡类型
+                int MerchantId = int.Parse(jsonObj["MerchantId"].ToString()); //商户Id
+                int QrPayFlag = int.Parse(jsonObj["QrPayFlag"].ToString()); //云闪付
+                decimal TradeAmount = decimal.Parse(jsonObj["TradeAmount"].ToString()); //当日交易额
+                string TradeMonth = DateTime.Parse(DateString).ToString("yyyyMM");
+                string TradeDate = DateTime.Parse(DateString).ToString("yyyyMMdd");
+                WebCMSEntities db = new WebCMSEntities();
+                var tran = db.Database.BeginTransaction();
+                try
+                {
+                    PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == MerchantId) ?? new PosMerchantInfo();
+                    MachineForMerNo machineFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == merchant.KqMerNo) ?? new MachineForMerNo();
+                    PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == machineFor.SnId) ?? new PosMachinesTwo();
+                    int MerchantTypeUserId = int.Parse(function.CheckInt(pos.SeoTitle));
+                    if (MerchantTypeUserId > 0)
+                    {
+                        Users merchantUser = db.Users.FirstOrDefault(m => m.Id == MerchantTypeUserId && m.MerchantType == 1);
+                        if (merchantUser != null)
+                        {
+                            UserId = MerchantTypeUserId;
+                        }
+                    }
+                    RedisDbconn.Instance.AddNumber("MerTotalAmount:" + MerchantId, TradeAmount);
+                    RedisDbconn.Instance.AddNumber("MerTotalAmount:" + MerchantId + ":" + TradeMonth, TradeAmount); //商户当月交易
+                    RedisDbconn.Instance.AddNumber("MerTotalAmount:" + MerchantId + ":" + TradeDate, TradeAmount); //商户当日交易
+
+                    Users user = db.Users.FirstOrDefault(m => m.Id == UserId);
+                    if (user != null)
+                    {
+                        if (user.AuthFlag == 1)
+                        {
+                            // UserTradeDaySummary selfStat = db.UserTradeDaySummary.FirstOrDefault(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.TradeDate == TradeDate && m.BrandId == BrandId && m.QueryCount == QrPayFlag && m.Sort == MerchantId && m.SeoTitle == "self");
+                            // if (selfStat == null)
+                            // {
+                            //     selfStat = db.UserTradeDaySummary.Add(new UserTradeDaySummary()
+                            //     {
+                            //         UserId = UserId,
+                            //         TradeMonth = TradeMonth,
+                            //         TradeDate = TradeDate,
+                            //         BrandId = BrandId,
+                            //         QueryCount = QrPayFlag,
+                            //         Sort = MerchantId,
+                            //         SeoTitle = "self",
+                            //     }).Entity;
+                            //     db.SaveChanges();
+                            // }
+                            // if (BankCardType == 0)
+                            // { 
+                            //     selfStat.DirectDebitTradeAmt += TradeAmount;
+                            // }
+                            // else if (BankCardType == 1)
+                            // {
+                            //     selfStat.DirectTradeAmt += TradeAmount;
+                            // }
+                            // db.SaveChanges();
+
+                            RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId, TradeAmount); //总交易
+                            RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + TradeDate, TradeAmount); //总交易
+                            RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + TradeMonth, TradeAmount); //总交易
+                            RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + BrandId + ":" + TradeDate, TradeAmount); //总交易
+                            RedisDbconn.Instance.AddNumber("TotalAmount:" + UserId + ":" + BrandId + ":" + TradeMonth, TradeAmount); //总交易
+                            if (QrPayFlag == 1)
+                            {
+                                RedisDbconn.Instance.AddNumber("TotalCloudPayAmount:" + UserId + ":" + TradeDate, TradeAmount); //云闪付小额交易额
+                                RedisDbconn.Instance.AddNumber("TotalCloudPayAmount:" + UserId + ":" + TradeMonth, TradeAmount); //云闪付小额交易额
+                            }
+                            else
+                            {
+                                RedisDbconn.Instance.AddNumber("TotalPosAmount:" + UserId + ":" + TradeDate, TradeAmount); //POS机刷卡交易额
+                                RedisDbconn.Instance.AddNumber("TotalPosAmount:" + UserId + ":" + TradeMonth, TradeAmount); //POS机刷卡交易额
+                            }
+
+                            string ParentNav = user.ParentNav;
+                            if (UserId != pos.UserId)
+                            {
+                                user = db.Users.FirstOrDefault(m => m.Id == pos.UserId);
+                                if (user != null)
+                                {
+                                    ParentNav = user.ParentNav;
+                                    UserId = pos.UserId;
+                                }
+                            }
+                            if (!string.IsNullOrEmpty(ParentNav))
+                            {
+                                ParentNav += "," + UserId + ",";
+                                string[] ParentNavList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
+                                foreach (string UserIdString in ParentNavList)
+                                {
+                                    int ParentUserId = int.Parse(UserIdString);
+                                    // UserTradeDaySummary teamStat = db.UserTradeDaySummary.FirstOrDefault(m => m.UserId == ParentUserId && m.TradeMonth == TradeMonth && m.TradeDate == TradeDate && m.BrandId == BrandId && m.QueryCount == QrPayFlag && m.Sort == MerchantId && m.SeoTitle == "team");
+                                    // if (teamStat == null)
+                                    // {
+                                    //     teamStat = db.UserTradeDaySummary.Add(new UserTradeDaySummary()
+                                    //     {
+                                    //         UserId = ParentUserId,
+                                    //         TradeMonth = TradeMonth,
+                                    //         TradeDate = TradeDate,
+                                    //         BrandId = BrandId,
+                                    //         QueryCount = QrPayFlag,
+                                    //         Sort = MerchantId,
+                                    //         SeoTitle = "team",
+                                    //     }).Entity;
+                                    //     db.SaveChanges();
+                                    // }
+                                    // if (BankCardType == 0)
+                                    // { 
+                                    //     teamStat.NonDirectDebitTradeAmt += TradeAmount;
+                                    // }
+                                    // else if (BankCardType == 1)
+                                    // {
+                                    //     teamStat.NonDirectTradeAmt += TradeAmount;
+                                    // }
+                                    // db.SaveChanges();
+
+                                    RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + ParentUserId, TradeAmount); //总交易
+                                    RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + ParentUserId + ":" + TradeDate, TradeAmount); //总交易
+                                    RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + ParentUserId + ":" + TradeMonth, TradeAmount); //总交易
+                                    RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + ParentUserId + ":" + BrandId + ":" + TradeDate, TradeAmount); //总交易
+                                    RedisDbconn.Instance.AddNumber("TeamTotalAmount:" + ParentUserId + ":" + BrandId + ":" + TradeMonth, TradeAmount); //总交易
+                                    if (QrPayFlag == 1)
+                                    {
+                                        RedisDbconn.Instance.AddNumber("TeamTotalCloudPayAmount:" + ParentUserId + ":" + TradeDate, TradeAmount); //云闪付小额交易额
+                                        RedisDbconn.Instance.AddNumber("TeamTotalCloudPayAmount:" + ParentUserId + ":" + TradeMonth, TradeAmount); //云闪付小额交易额
+                                    }
+                                    else
+                                    {
+                                        RedisDbconn.Instance.AddNumber("TeamTotalPosAmount:" + ParentUserId + ":" + TradeDate, TradeAmount); //POS机刷卡交易额
+                                        RedisDbconn.Instance.AddNumber("TeamTotalPosAmount:" + ParentUserId + ":" + TradeMonth, TradeAmount); //POS机刷卡交易额
+                                    }
+                                }
+                            }
+                        }
+                    }
+                    tran.Commit();
+                }
+                catch (Exception ex)
+                {
+                    function.WriteLog(DateTime.Now.ToString() + "\n" + content + "\n" + ex.ToString(), "统计交易额异常");
+                    tran.Rollback();
+                }
+                tran.Dispose();
+                db.Dispose();
+            }
+            else
+            {
+                Thread.Sleep(3600000);
+            }
+        }
+    }
+}

+ 22 - 1
Controllers/HomeController.cs

@@ -418,7 +418,7 @@ namespace MySystem.Controllers
                                     }
                                 }
                                 db.SaveChanges();
-                                function.WriteLog(pos.PosSn + ":" + pos.BrandId + ":" + TradeAmount, "补充交易数据");
+                                function.WriteLog(trade.Id.ToString(), "补充交易数据");
                             }
                         }
                     }
@@ -431,6 +431,27 @@ namespace MySystem.Controllers
 
         public string test()
         {
+            // StatService.Instance.dosomething2("2022-03-31");
+            // StatService.Instance.dosomething2("2022-03-30");
+            // StatService.Instance.dosomething2("2022-03-29");
+            // StatService.Instance.dosomething2("2022-03-28");
+            // StatService.Instance.dosomething2("2022-03-27");
+            // StatService.Instance.dosomething2("2022-03-26");
+            // StatService.Instance.dosomething2("2022-03-25");
+            // StatService.Instance.dosomething2("2022-03-24");
+            // StatService.Instance.dosomething2("2022-03-23");
+            // StatService.Instance.dosomething2("2022-03-22");
+            // StatService.Instance.dosomething2("2022-03-21");
+            // StatService.Instance.dosomething2("2022-03-20");
+            // StatService.Instance.dosomething2("2022-03-19");
+            // StatService.Instance.dosomething2("2022-03-18");
+            // StatService.Instance.dosomething2("2022-03-17");
+            // StatService.Instance.dosomething2("2022-03-16");
+            // StatService.Instance.dosomething2("2022-03-15");
+            // StatService.Instance.dosomething2("2022-03-14");
+            // StatService.Instance.dosomething2("2022-03-13");
+            // StatService.Instance.dosomething2("2022-03-12");
+            // StatService.Instance.dosomething2("2022-03-11");
             return "ok";
         }
     }

+ 2 - 0
Startup.cs

@@ -217,6 +217,8 @@ namespace MySystem
             // app.UseMiddleware<GraphQLMiddleware>();
 
             ActiveRewardTimer.Instance.Start(); //实时处理激活记录
+            TradeStatTimer.Instance.Start(); //交易统计
+            // ProfitHelper.Instance.StatProfit("202203");
 
             //当前必须打开的
             RabbitMQClient.Instance.StartReceive("MakeReferenceQrCode");

BIN
bin/Debug/netcoreapp3.0/MySystem.dll


BIN
bin/Debug/netcoreapp3.0/MySystem.pdb


+ 0 - 20
bin/Debug/netcoreapp3.0/log/Global全局异常处理日志/2022/3/13/content.log

@@ -1,20 +0,0 @@
-03/13/2022 02:44:10
-Unable to read data from the transport connection: Operation timed out.
-   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)
-   at CSRedis.CSRedisClient.ExecuteScalar[T](String key, Func`3 hander)
-   at CSRedis.CSRedisClient.IncrByFloat(String key, Decimal value)
-   at MySystem.TendisDbconn.AddNumber(String key, Decimal value) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 34
-   at MySystem.StatService.dosomething() in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/Helper/StatService.cs:line 71
-   at MySystem.Controllers.HomeController.test() in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/Controllers/HomeController.cs:line 84
-   at lambda_method(Closure , Object , Object[] )
-   at Microsoft.Extensions.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters)
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeActionMethodAsync()
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeNextActionFilterAsync()
---- End of stack trace from previous location where exception was thrown ---
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location where exception was thrown ---
-   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)

+ 0 - 20
bin/Debug/netcoreapp3.0/log/SycnSpServer监控/2022/3/15/content.log

@@ -1,20 +0,0 @@
-{"Id":22,"Status":0,"Msg":null,"Note":"激活数据投产","OrderString":"Sp:active:SpServer","BrandInfo":null,"StartId":0,"EndId":0,"FinishId":16215216,"TableType":0}
-Sp:active:SpServer
-ok
-Kind:active
-finish:active
-
-
-
-
-{"Id":21,"Status":0,"Msg":null,"Note":"绑定数据投产","OrderString":"Sp:bind:SpServer","BrandInfo":null,"StartId":0,"EndId":0,"FinishId":16215217,"TableType":0}
-Sp:bind:SpServer
-ok
-Kind:bind
-1
-2
-3:count:5
-{"Id":24,"Status":0,"Msg":null,"Note":"商户数据投产","OrderString":"Sp:merchant:SpServer","BrandInfo":null,"StartId":0,"EndId":0,"FinishId":16215234,"TableType":0}
-Sp:merchant:SpServer
-ok
-Kind:merchant

+ 0 - 48
bin/Debug/netcoreapp3.0/log/Tendis:Clear/2022/3/13/content.log

@@ -1,48 +0,0 @@
-{"key":"TotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"AddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamAddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"AddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamAddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"AddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamAddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalCloudPayAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosAmount*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"AddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamAddUser*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}
-{"key":"TeamTotalPosMerchant*","value":null,"errMsg":"System.IO.IOException: Unable to read data from the transport connection: Operation timed out.\n ---> System.Net.Sockets.SocketException (60): Operation timed out\n   --- End of inner exception stack trace ---\n   at CSRedis.CSRedisClient.GetAndExecute[T](RedisClientPool pool, Func`2 handler, Int32 jump, Int32 errtimes)\n   at CSRedis.CSRedisClient.Keys(String pattern)\n   at MySystem.TendisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/TendisDbconn.cs:line 211\n   at MySystem.BothdisDbconn.Clear(String pattern) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/BothdisDbconn.cs:line 412","start":0,"end":0}

+ 0 - 5
bin/Debug/netcoreapp3.0/log/public_service/2022/3/15/content.log

@@ -1,5 +0,0 @@
-03/15/2022 15:48:20:System.IO.FileNotFoundException: /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/bin/Debug/netcoreapp3.0//static/QrCodeBg.png
-   at System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement)
-   at System.Drawing.Image.FromFile(String filename)
-   at MySystem.MakeReferenceQrCodeService.MakeQRCode(String sourcepath, String qrcode, String resultpath, Users us) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/Helper/MakeReferenceQrCodeService.cs:line 62
-   at MySystem.MakeReferenceQrCodeService.Start(String uid) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/Helper/MakeReferenceQrCodeService.cs:line 32

+ 0 - 4
bin/Debug/netcoreapp3.0/log/sycn_sp_server_err/2022/3/15/content.log

@@ -1,4 +0,0 @@
-03/15/2022 15:48:34:System.NullReferenceException: Object reference not set to an instance of an object.
-   at MySystem.SycnSpBindService.Start() in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/Helper/SycnSpServer/SycnSpBindService.cs:line 52
-   at MySystem.SycnSpService.dosomething(String Kind) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/Helper/SycnSpServer/SycnSpService.cs:line 46
-   at MySystem.SycnSpService.Start(JobMqMsg jobInfo) in /Users/Shared/Previously Relocated Items/Security/MyDisk/我的/项目/myprogram_vs2019/KeXiaoShuang/MainServer/AppStart/Helper/SycnSpServer/SycnSpService.cs:line 28

+ 0 - 12
bin/Debug/netcoreapp3.0/log/服务商平台查询申请单状态API/2022/3/15/content.log

@@ -1,12 +0,0 @@
-{"applyment_id":2000002272727120,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031113503858323834","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQGR7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyc21Wbjljb3JlUjIxcXh5bWh5Y08AAgShFS9iAwQAjScA"}
-{"applyment_id":2000002273485321,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031318061258279293","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFa7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAydGpibDhsb3JlUjIxcXh5bWh5Y3YAAgShFS9iAwQAjScA"}
-{"applyment_id":2000002272727120,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031113503858323834","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQGR7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyc21Wbjljb3JlUjIxcXh5bWh5Y08AAgShFS9iAwQAjScA"}
-{"applyment_id":2000002273485321,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031318061258279293","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFa7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAydGpibDhsb3JlUjIxcXh5bWh5Y3YAAgShFS9iAwQAjScA"}
-{"applyment_id":2000002272727120,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031113503858323834","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQGR7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyc21Wbjljb3JlUjIxcXh5bWh5Y08AAgShFS9iAwQAjScA"}
-{"applyment_id":2000002273485321,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031318061258279293","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFa7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAydGpibDhsb3JlUjIxcXh5bWh5Y3YAAgShFS9iAwQAjScA"}
-{"applyment_id":2000002272727120,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031113503858323834","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQGR7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyc21Wbjljb3JlUjIxcXh5bWh5Y08AAgShFS9iAwQAjScA"}
-{"applyment_id":2000002273485321,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031318061258279293","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFa7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAydGpibDhsb3JlUjIxcXh5bWh5Y3YAAgShFS9iAwQAjScA"}
-{"applyment_id":2000002272727120,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031113503858323834","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQGR7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyc21Wbjljb3JlUjIxcXh5bWh5Y08AAgShFS9iAwQAjScA"}
-{"applyment_id":2000002273485321,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031318061258279293","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFa7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAydGpibDhsb3JlUjIxcXh5bWh5Y3YAAgShFS9iAwQAjScA"}
-{"applyment_id":2000002272727120,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031113503858323834","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQGR7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyc21Wbjljb3JlUjIxcXh5bWh5Y08AAgShFS9iAwQAjScA"}
-{"applyment_id":2000002273485321,"applyment_state":"APPLYMENT_STATE_AUDITING","applyment_state_msg":"1、申请单正在审核中;2、可让超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤","audit_detail":[],"business_code":"KXS2022031318061258279293","sign_url":"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFa7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAydGpibDhsb3JlUjIxcXh5bWh5Y3YAAgShFS9iAwQAjScA"}

+ 0 - 14978
bin/Debug/netcoreapp3.0/log/补充交易数据/2022/4/6/content.log

@@ -1,14978 +0,0 @@
-00003102722201179802600:1:25.00
-00003102722201179802600:1:1000.00
-00003102722201179802600:1:500.00
-00003102722201179802600:1:1560.00
-00003102722201179802601:1:1000.00
-00003102722201179802603:1:1000.00
-00003102722201179802603:1:100.00
-00003102722201179809000:1:10.00
-00003102722201179809030:1:100.00
-00003102722201179806909:1:1000.00
-00003102722201179804750:1:1000.00
-00003102722201179804751:1:200.00
-00003102722201179801650:1:1000.00
-00003102722201179804751:1:3460.00
-00003102722201179804750:1:240.00
-00003102722201179804756:1:100.00
-00003102722201179801650:1:1000.00
-00003102722201179804756:1:910.00
-00003102722201179804751:1:900.00
-00003102722201179801848:1:1000.00
-00003102722201179801843:1:1000.00
-00003102722201179809099:1:3000.00
-00003102722201179801848:1:1000.00
-00003102722201179809129:1:34.00
-00003102722201179809129:1:3905.00
-00003102722201179813100:1:1000.00
-00003102722201179813100:1:10.00
-00003102722201179801655:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179808602:1:1098.00
-00003102722201179809027:1:1000.00
-00003102722201179801755:1:1000.00
-00003102722201179813198:1:1000.00
-00003102722201179804786:1:560.00
-00003102722201179801652:1:1000.00
-00003102722201179804786:1:12300.00
-00003102722201179804743:1:1100.00
-00003102722201179813198:1:3975.00
-00003102722201179813102:1:1000.00
-00003102722201179801843:1:341.00
-00003102722201179801843:1:2241.00
-00003102722201179801843:1:341.00
-00003102722201179801843:1:341.00
-00003102722201179801799:1:1001.00
-00003102722201179801799:1:1000.00
-00003102722201179808069:1:1000.00
-00003102722201179808069:1:1420.00
-00003102722201179808069:1:1080.00
-00003102722201179808069:1:860.00
-00003102722201179813170:1:1080.00
-00003102722201179807635:1:1000.00
-00003102722201179807630:1:1000.00
-00003102722201179807630:1:100.00
-00003102722201179807635:1:100.00
-00003102722201179808041:1:1000.00
-00003102722201179801820:1:1000.00
-00003102722201179801650:1:300.00
-00003102722201179801650:1:700.00
-00003102722201179801650:1:850.00
-00003102722201179801650:1:770.00
-00003102722201179801650:1:680.00
-00003102722201179812105:1:1000.00
-00003102722201179809128:1:1329.00
-00003102722201179801756:1:1000.00
-00003102722201179808005:1:10.00
-00003102722201179808824:1:1000.00
-00003102722201179808005:1:1010.00
-00003102722201179808005:1:10100.00
-00003102722201179812101:1:1000.00
-00003102722201179803833:1:1000.00
-00003102722201179808005:1:12800.00
-00003102722201179808005:1:13000.00
-00003102722201179804789:1:100.00
-00003102722201179803750:1:1000.00
-00003102722201179808820:1:1000.00
-00003102722201179813169:1:1000.00
-00003102722201179805900:1:1000.00
-00003102722201179812101:1:5000.00
-00003102722201179808823:1:1000.00
-00003102722201179808821:1:1020.00
-00003102722201179809129:1:10000.00
-00003102722201179808821:1:2895.00
-00003102722201179809129:1:7060.00
-00003102722201179809129:1:9380.00
-00003102722201179809129:1:5400.00
-00003102722201179809129:1:4500.00
-00003102722201179801754:1:1000.00
-00003102722201179804743:1:2000.00
-00003102722201179803827:1:1000.00
-00003102722201179809027:1:12800.00
-00003102722201179804756:1:958.74
-00003102722201179808996:1:1000.00
-00003102722201179804756:1:430.00
-00003102722201179809128:1:714.00
-00003102722201179808039:1:1050.00
-00003102722201179805901:1:298.00
-00003102722201179804756:1:1280.00
-00003102722201179803701:1:4200.80
-00003102722201179801651:1:1000.00
-00003102722201179801843:1:1159.00
-00003102722201179801843:1:959.00
-00003102722201179801843:1:1659.00
-00003102722201179801843:1:2759.00
-00003102722201179801650:1:6200.00
-00003102722201179809129:1:8990.00
-00003102722201179809129:1:4500.00
-00003102722201179803758:1:1000.00
-00003102722201179809129:1:10297.00
-00003102722201179803848:1:6520.00
-00003102722201179803848:1:1000.00
-00003102722201179803848:1:6890.00
-00003102722201179803848:1:6910.00
-00003102722201179803848:1:6820.00
-00003102722201179803848:1:6480.00
-00003102722201179803848:1:6720.00
-00003102722201179804743:1:5000.00
-00003102722201179803848:1:2400.00
-00003102722201179803848:1:6780.00
-00003102722201179809129:1:8963.00
-00003102722201179809060:1:500.00
-00003102722201179809060:1:47698.85
-00003102722201179803701:1:992.00
-00003102722201179803701:1:910.00
-00003102722201179803701:1:995.00
-00003102722201179803701:1:780.00
-00003102722201179803701:1:890.00
-00003102722201179803701:1:310.00
-00003102722201179803701:1:190.00
-00003102722201179803848:1:480.00
-00003102722201179809060:1:30000.58
-00003102722201179809129:1:9837.00
-00003102722201179809129:1:4572.00
-00003102722201179809129:1:9537.00
-00003102722201179809129:1:9717.00
-00003102722201179802309:1:10.00
-00003102722201179802309:1:4125.00
-00003102722201179801656:1:1000.00
-00003102722201179801658:1:1000.00
-00003102722201179813460:1:1000.00
-00003102722201179801659:1:1000.00
-00003102722201179803812:1:1000.00
-00003102722201179801657:1:1000.00
-00003102722201179813116:1:1001.00
-00003102722201179812105:1:30000.00
-00003102722201179808829:1:1000.00
-00003102722201179804788:1:1017.00
-00003102722201179808810:1:1000.00
-00003102722201179808039:1:16000.00
-00003102722201179801690:1:1000.00
-00003102722201179809088:1:1000.00
-00003102722201179801795:1:10.00
-00003102722201179801795:1:1000.00
-00003102722201179814200:1:1000.00
-00003102722201179801708:1:10.00
-00003102722201179800873:1:1000.00
-00003102722201179801708:1:10.00
-00003102722201179805192:1:1000.00
-00003102722201179801691:1:1000.00
-00003102722201179805192:1:900.00
-00003102722201179801690:1:4725.00
-00003102722201179801708:1:1009.00
-00003102722201179801690:1:4857.00
-00003102722201179808246:1:1023.00
-00003102722201179801600:1:700.00
-00003102722201179808258:1:1000.00
-00003102722201179800873:1:1000.00
-00003102722201179801600:1:1000.00
-00003102722201179800873:1:1000.00
-00003102722201179800873:1:1000.00
-00003102722201179801600:1:1000.00
-00003102722201179801160:1:1000.00
-00003102722201179801160:1:300.00
-00003102722201179802617:1:10000.00
-00003102722201179804787:1:12.00
-00003102722201179813172:1:1000.00
-00003102722201179801184:1:1000.00
-00003102722201179801848:1:4190.00
-00003102722201179801848:1:2495.00
-00003102722201179813184:1:108.00
-00003102722201179801759:1:1000.00
-00003102722201179802627:1:1000.00
-00003102722201179805192:1:980.00
-00003102722201179801692:1:1000.00
-00003102722201179806989:1:1000.00
-00003102722201179808232:1:1136.00
-00003102722201179802300:1:100.00
-00003102722201179808851:1:1000.00
-00003102722201179801759:1:3100.00
-00003102722201179802628:1:1000.00
-00003102722201179801759:1:3600.00
-00003102722201179801693:1:1000.00
-00003102722201179806989:1:230.00
-00003102722201179801759:1:3200.00
-00003102722201179808850:1:1000.00
-00003102722201179806800:1:1000.00
-00003102722201179813461:1:4252.00
-00003102722201179803150:1:1000.00
-00003102722201179806800:1:2625.00
-00003102722201179801167:1:1000.00
-00003102722201179801694:1:1000.00
-00003102722201179801162:1:1000.00
-00003102722201179801694:1:10000.00
-00003102722201179804785:1:2280.00
-00003102722201179802628:1:9950.00
-00003102722201179814208:1:1000.00
-00003102722201179802628:1:4000.00
-00003102722201179813460:1:15101.00
-00003102722201179805172:1:560.00
-00003102722201179806964:1:1000.00
-00003102722201179805043:1:1005.00
-00003102722201179804769:1:100.00
-00003102722201179805043:1:1805.00
-00003102722201179806889:1:1023.00
-00003102722201179803933:1:1000.00
-00003102722201179803933:1:998.00
-00003102722201179803933:1:997.00
-00003102722201179803933:1:996.00
-00003102722201179803933:1:999.00
-00003102722201179802630:1:2308.00
-00003102722201179804774:1:1100.00
-00003102722201179801176:1:1000.00
-00003102722201179812106:1:1000.00
-00003102722201179804769:1:5030.00
-00003102722201179808007:1:1100.00
-00003102722201179806963:1:1000.00
-00003102722201179814201:1:5000.00
-00003102722201179808069:1:2250.00
-00003102722201179808852:1:1000.00
-00003102722201179808886:1:1000.00
-00003102722201179803811:1:1000.00
-00003102722201179808007:1:1200.00
-00003102722201179813183:1:268.00
-00003102722201179803155:1:1000.00
-00003102722201179808045:1:1200.00
-00003102722201179801790:1:1000.00
-00003102722201179803155:1:19460.00
-00003102722201179811149:1:2380.00
-00003102722201179801841:1:1000.00
-00003102722201179801602:1:1000.00
-00003102722201179814202:1:1780.00
-00003102722201179801167:1:35679.00
-00003102722201179803155:1:28430.00
-00003102722201179806879:1:1000.00
-00003102722201179813460:1:10421.00
-00003102722201179801695:1:1000.00
-00003102722201179801608:1:1320.00
-00003102722201179803846:1:1000.00
-00003102722201179803150:1:48989.50
-00003102722201179808865:1:1000.00
-00003102722201179806879:1:10000.00
-00003102722201179808260:1:330.00
-00003102722201179801794:1:1000.00
-00003102722201179804706:1:108.00
-00003102722201179801170:1:1000.00
-00003102722201179812000:1:12437.00
-00003102722201179806979:1:1003.00
-00003102722201179801621:1:1000.00
-00003102722201179807651:1:3600.00
-00003102722201179808253:1:1001.00
-00003102722201179812000:1:321.00
-00003102722201179812000:1:321.00
-00003102722201179801167:1:9865.00
-00003102722201179801608:1:6373.00
-00003102722201179804706:1:10864.00
-00003102722201179801702:1:1000.00
-00003102722201179805182:1:1008.00
-00003102722201179809127:1:1213.00
-00003102722201179807298:1:7258.00
-00003102722201179806983:1:1053.00
-00003102722201179801757:1:1000.00
-00003102722201179803152:1:987.00
-00003102722201179803152:1:1068.00
-00003102722201179809128:1:1328.00
-00003102722201179805041:1:1005.00
-00003102722201179801710:1:10.00
-00003102722201179808866:1:1000.00
-00003102722201179801710:1:1000.00
-00003102722201179801702:1:6260.00
-00003102722201179802601:1:100.00
-00003102722201179802614:1:1000.00
-00003102722201179802603:1:100.00
-00003102722201179806879:1:5000.00
-00003102722201179801144:1:1000.00
-00003102722201179811169:1:1070.00
-00003102722201179806980:1:1001.00
-00003102722201179804717:1:210.00
-00003102722201179805008:1:1000.00
-00003102722201179801613:1:1000.00
-00003102722201179803842:1:1280.00
-00003102722201179805182:1:4000.05
-00003102722201179804717:1:2600.00
-00003102722201179808283:1:1020.00
-00003102722201179804717:1:2600.00
-00003102722201179808245:1:1136.00
-00003102722201179800790:1:1542.00
-00003102722201179803945:1:1000.00
-00003102722201179814207:1:1000.00
-00003102722201179808245:1:15.00
-00003102722201179813365:1:100.00
-00003102722201179814206:1:5000.00
-00003102722201179801186:1:1000.00
-00003102722201179806776:1:1000.00
-00003102722201179806776:1:1000.00
-00003102722201179803751:1:1000.00
-00003102722201179803154:1:1000.00
-00003102722201179801756:1:5476.00
-00003102722201179808295:1:100.00
-00003102722201179812105:1:980.00
-00003102722201179801146:1:1000.00
-00003102722201179805047:1:1002.00
-00003102722201179801756:1:5784.00
-00003102722201179806776:1:1683.00
-00003102722201179806984:1:1280.00
-00003102722201179808295:1:1000.00
-00003102722201179801775:1:10088.00
-00003102722201179805182:1:5105.00
-00003102722201179804716:1:105.00
-00003102722201179806980:1:9985.00
-00003102722201179801843:1:1362.00
-00003102722201179803852:1:1000.00
-00003102722201179809055:1:1000.00
-00003102722201179801843:1:1362.00
-00003102722201179801843:1:2362.00
-00003102722201179801171:1:1000.00
-00003102722201179801777:1:50000.00
-00003102722201179806978:1:1021.00
-00003102722201179808924:1:1000.00
-00003102722201179801600:1:1300.00
-00003102722201179804785:1:9999.99
-00003102722201179808725:1:4980.00
-00003102722201179803152:1:997.00
-00003102722201179803005:1:1000.00
-00003102722201179806314:1:1080.00
-00003102722201179808725:1:4000.00
-00003102722201179813169:1:58.00
-00003102722201179808725:1:3300.00
-00003102722201179808725:1:1900.00
-00003102722201179808725:1:4999.00
-00003102722201179801168:1:2800.00
-00003102722201179803901:1:1000.00
-00003102722201179808725:1:5999.00
-00003102722201179808725:1:4999.00
-00003102722201179804773:1:578.00
-00003102722201179811117:1:1000.00
-00003102722201179801650:1:980.00
-00003102722201179808968:1:1000.00
-00003102722201179801168:1:1080.00
-00003102722201179801650:1:770.00
-00003102722201179801702:1:9780.00
-00003102722201179808725:1:4000.00
-00003102722201179806978:1:987.00
-00003102722201179801650:1:560.00
-00003102722201179803155:1:18430.00
-00003102722201179801650:1:680.00
-00003102722201179808725:1:5000.00
-00003102722201179803155:1:4875.00
-00003102722201179803155:1:14240.00
-00003102722201179813184:1:1120.00
-00003102722201179802776:1:10.00
-00003102722201179805010:1:1000.00
-00003102722201179813128:1:10000.00
-00003102722201179803429:1:10.00
-00003102722201179805040:1:1004.00
-00003102722201179808725:1:5999.00
-00003102722201179803155:1:17460.00
-00003102722201179808725:1:4000.00
-00003102722201179811113:1:10.05
-00003102722201179803155:1:19470.00
-00003102722201179809128:1:684.00
-00003102722201179805425:1:1000.00
-00003102722201179811150:1:1068.00
-00003102722201179811113:1:1005.00
-00003102722201179809026:1:1340.00
-00003102722201179803851:1:1000.00
-00003102722201179804383:1:10.30
-00003102722201179805037:1:1000.00
-00003102722201179805010:1:9800.00
-00003102722201179805177:1:1106.00
-00003102722201179805010:1:9650.00
-00003102722201179804708:1:8456.00
-00003102722201179811148:1:1100.00
-00003102722201179802308:1:106.00
-00003102722201179808044:1:1000.00
-00003102722201179804383:1:16235.88
-00003102722201179808044:1:101.00
-00003102722201179807095:1:1007.00
-00003102722201179801636:1:1000.00
-00003102722201179808044:1:999.90
-00003102722201179807284:1:1010.00
-00003102722201179808044:1:999.00
-00003102722201179808244:1:1650.00
-00003102722201179813461:1:3215.00
-00003102722201179808257:1:1058.00
-00003102722201179805039:1:1000.00
-00003102722201179808967:1:1000.00
-00003102722201179800672:1:1000.00
-00003102722201179804756:1:680.00
-00003102722201179801843:1:638.00
-00003102722201179801843:1:638.00
-00003102722201179801843:1:638.00
-00003102722201179805195:1:120.00
-00003102722201179808243:1:1022.00
-00003102722201179801848:1:9270.00
-00003102722201179808244:1:1580.00
-00003102722201179802850:1:910.00
-00003102722201179805045:1:1005.00
-00003102722201179802850:1:900.00
-00003102722201179802850:1:100.00
-00003102722201179809129:1:6800.00
-00003102722201179809129:1:2265.00
-00003102722201179808729:1:1000.00
-00003102722201179809129:1:7179.00
-00003102722201179801692:1:10000.00
-00003102722201179809129:1:7179.00
-00003102722201179806988:1:1000.00
-00003102722201179807094:1:3013.00
-00003102722201179801754:1:9408.00
-00003102722201179808044:1:999.00
-00003102722201179808044:1:999.90
-00003102722201179806988:1:3299.00
-00003102722201179808876:1:8639.00
-00003102722201179804756:1:860.00
-00003102722201179808876:1:19836.00
-00003102722201179811131:1:1000.00
-00003102722201179806988:1:4198.00
-00003102722201179811173:1:1000.00
-00003102722201179808876:1:7863.00
-00003102722201179811173:1:2000.00
-00003102722201179806989:1:855.55
-00003102722201179813173:1:1000.00
-00003102722201179808876:1:5839.00
-00003102722201179813173:1:1250.00
-00003102722201179808876:1:7639.00
-00003102722201179808876:1:997.00
-00003102722201179801848:1:2490.00
-00003102722201179808803:1:1000.00
-00003102722201179806906:1:1100.00
-00003102722201179806906:1:13400.00
-00003102722201179813198:1:1871.00
-00003102722201179803833:1:4700.00
-00003102722201179803833:1:980.00
-00003102722201179801653:1:1000.00
-00003102722201179808044:1:999.00
-00003102722201179808044:1:999.00
-00003102722201179803839:1:3800.00
-00003102722201179808044:1:999.00
-00003102722201179808044:1:999.00
-00003102722201179808004:1:3999.00
-00003102722201179808044:1:990.00
-00003102722201179808044:1:500.00
-00003102722201179802630:1:23550.00
-00003102722201179808069:1:3200.00
-00003102722201179803701:1:195.00
-00003102722201179803701:1:200.00
-00003102722201179809129:1:10100.00
-00003102722201179809000:1:4228.00
-00003102722201179809000:1:3162.00
-00003102722201179809000:1:3277.00
-00003102722201179806906:1:26300.00
-00003102722201179803833:1:5600.00
-00003102722201179808814:1:1000.00
-00003102722201179808809:1:1050.00
-00003102722201179803403:1:100.00
-00003102722201179803854:1:1000.00
-00003102722201179808910:1:1001.00
-00003102722201179807298:1:4750.00
-00003102722201179803833:1:820.00
-00003102722201179808853:1:1000.00
-00003102722201179806469:1:1000.00
-00003102722201179806987:1:1000.00
-00003102722201179801848:1:4805.00
-00003102722201179806875:1:1000.00
-00003102722201179808234:1:5006.00
-00003102722201179800671:1:1288.00
-00003102722201179800873:1:960.00
-00003102722201179800873:1:986.00
-00003102722201179803701:1:925.00
-00003102722201179800873:1:635.00
-00003102722201179803701:1:952.00
-00003102722201179800873:1:856.00
-00003102722201179803701:1:910.00
-00003102722201179803701:1:860.00
-00003102722201179800873:1:650.00
-00003102722201179811132:1:1000.00
-00003102722201179813109:1:100.00
-00003102722201179813109:1:9999.00
-00003102722201179802308:1:512.00
-00003102722201179801692:1:10000.00
-00003102722201179800874:1:1300.00
-00003102722201179802308:1:3000.01
-00003102722201179813169:1:4690.00
-00003102722201179800874:1:469.00
-00003102722201179808951:1:1000.00
-00003102722201179802308:1:2870.00
-00003102722201179802169:1:1000.00
-00003102722201179800671:1:9852.00
-00003102722201179808725:1:6000.00
-00003102722201179805148:1:1003.00
-00003102722201179808725:1:6000.00
-00003102722201179808725:1:6000.00
-00003102722201179808725:1:6000.00
-00003102722201179808725:1:5999.00
-00003102722201179801651:1:27500.00
-00003102722201179801651:1:27600.00
-00003102722201179801698:1:1000.00
-00003102722201179805192:1:980.00
-00003102722201179808233:1:1000.00
-00003102722201179801651:1:27100.00
-00003102722201179801752:1:1050.00
-00003102722201179801635:1:1000.00
-00003102722201179803964:1:1000.00
-00003102722201179813184:1:3580.00
-00003102722201179803964:1:11892.00
-00003102722201179803964:1:8693.00
-00003102722201179808813:1:20.00
-00003102722201179814205:1:1000.00
-00003102722201179805925:1:1000.00
-00003102722201179802627:1:4230.00
-00003102722201179805925:1:1000.00
-00003102722201179803601:1:12.50
-00003102722201179803832:1:1000.00
-00003102722201179803964:1:8972.00
-00003102722201179801664:1:1000.00
-00003102722201179802776:1:889.00
-00003102722201179802627:1:4980.00
-00003102722201179803964:1:8962.00
-00003102722201179803440:1:1002.00
-00003102722201179808430:1:1876.00
-00003102722201179808295:1:5497.00
-00003102722201179801751:1:1050.00
-00003102722201179813460:1:9982.00
-00003102722201179814204:1:1000.00
-00003102722201179811147:1:1013.00
-00003102722201179808858:1:1000.00
-00003102722201179808827:1:1240.00
-00003102722201179806800:1:4000.00
-00003102722201179803701:1:982.00
-00003102722201179803701:1:975.00
-00003102722201179808551:1:1099.00
-00003102722201179803701:1:860.00
-00003102722201179803701:1:920.00
-00003102722201179808241:1:1000.00
-00003102722201179803701:1:985.00
-00003102722201179808551:1:899.00
-00003102722201179801778:1:1200.00
-00003102722201179808876:1:11237.00
-00003102722201179801665:1:1000.00
-00003102722201179808856:1:1000.00
-00003102722201179801651:1:27100.00
-00003102722201179805842:1:1000.00
-00003102722201179801709:1:1018.00
-00003102722201179808551:1:650.00
-00003102722201179800874:1:986.00
-00003102722201179801651:1:26200.00
-00003102722201179808604:1:1000.00
-00003102722201179808253:1:4611.00
-00003102722201179806326:1:1000.00
-00003102722201179808253:1:3210.00
-00003102722201179801709:1:13087.00
-00003102722201179808876:1:5391.00
-00003102722201179801700:1:1805.00
-00003102722201179806204:1:1000.00
-00003102722201179801137:1:1000.00
-00003102722201179809121:1:1010.00
-00003102722201179801684:1:1000.00
-00003102722201179808966:1:1000.00
-00003102722201179801635:1:910.00
-00003102722201179803941:1:1000.00
-00003102722201179802337:1:285.00
-00003102722201179808808:1:1000.00
-00003102722201179806963:1:5000.00
-00003102722201179801650:1:900.00
-00003102722201179801650:1:350.00
-00003102722201179801650:1:860.00
-00003102722201179808962:1:1000.00
-00003102722201179808828:1:1000.00
-00003102722201179801650:1:700.00
-00003102722201179806823:1:1000.00
-00003102722201179813198:1:997.00
-00003102722201179808239:1:1100.00
-00003102722201179803601:1:1435.00
-00003102722201179808962:1:3689.00
-00003102722201179801776:1:14099.00
-00003102722201179808239:1:4800.00
-00003102722201179808550:1:1023.00
-00003102722201179808239:1:5000.00
-00003102722201179805048:1:108.00
-00003102722201179801776:1:13899.00
-00003102722201179804787:1:12.00
-00003102722201179804398:1:1000.00
-00003102722201179805048:1:980.00
-00003102722201179803701:1:920.00
-00003102722201179803701:1:935.00
-00003102722201179803768:1:1000.00
-00003102722201179803701:1:952.00
-00003102722201179803701:1:894.00
-00003102722201179807095:1:3008.00
-00003102722201179803701:1:960.00
-00003102722201179805928:1:1010.00
-00003102722201179804787:1:1100.00
-00003102722201179803441:1:500.00
-00003102722201179800790:1:926.00
-00003102722201179808859:1:10000.00
-00003102722201179803441:1:10.00
-00003102722201179803768:1:6300.00
-00003102722201179808859:1:1000.00
-00003102722201179800875:1:1000.00
-00003102722201179808236:1:1200.00
-00003102722201179813184:1:2980.00
-00003102722201179800875:1:500.00
-00003102722201179808878:1:3217.00
-00003102722201179804384:1:1020.00
-00003102722201179809130:1:1000.00
-00003102722201179801148:1:1000.00
-00003102722201179803868:1:1000.00
-00003102722201179812752:1:1000.00
-00003102722201179803868:1:1000.00
-00003102722201179801112:1:1000.00
-00003102722201179812752:1:12000.00
-00003102722201179809101:1:1100.00
-00003102722201179814212:1:1000.00
-00003102722201179803441:1:10.00
-00003102722201179804398:1:1150.00
-00003102722201179801570:1:1127.00
-00003102722201179814211:1:1000.00
-00003102722201179803701:1:920.00
-00003102722201179803811:1:3000.15
-00003102722201179809100:1:1050.00
-00003102722201179803701:1:870.00
-00003102722201179804725:1:1100.00
-00003102722201179808561:1:101.00
-00003102722201179813185:1:1080.00
-00003102722201179808561:1:1000.00
-00003102722201179804719:1:98.00
-00003102722201179803020:1:1010.00
-00003102722201179805008:1:10055.00
-00003102722201179806979:1:1762.00
-00003102722201179814205:1:2280.00
-00003102722201179801842:1:1000.00
-00003102722201179808461:1:1000.00
-00003102722201179801696:1:1000.00
-00003102722201179803020:1:1413.00
-00003102722201179806876:1:1000.00
-00003102722201179804398:1:500.00
-00003102722201179805192:1:960.00
-00003102722201179801776:1:8999.00
-00003102722201179801842:1:4000.00
-00003102722201179806989:1:961.00
-00003102722201179800797:1:1298.00
-00003102722201179808803:1:22900.00
-00003102722201179804665:1:300.00
-00003102722201179803844:1:1000.00
-00003102722201179806488:1:1000.00
-00003102722201179811173:1:9011.00
-00003102722201179814205:1:1800.00
-00003102722201179804725:1:9158.80
-00003102722201179803759:1:1000.00
-00003102722201179808803:1:10700.00
-00003102722201179804725:1:13880.00
-00003102722201179814525:1:1060.00
-00003102722201179801777:1:19000.00
-00003102722201179802613:1:1000.00
-00003102722201179814525:1:570.00
-00003102722201179814525:1:960.00
-00003102722201179811146:1:1000.00
-00003102722201179808990:1:1020.00
-00003102722201179800692:1:500.00
-00003102722201179814525:1:670.00
-00003102722201179801651:1:26100.00
-00003102722201179801777:1:3971.11
-00003102722201179814525:1:740.00
-00003102722201179803601:1:1860.00
-00003102722201179814525:1:980.00
-00003102722201179806906:1:6150.00
-00003102722201179806210:1:1000.00
-00003102722201179808915:1:1000.00
-00003102722201179801651:1:26188.00
-00003102722201179814525:1:840.00
-00003102722201179806906:1:28610.00
-00003102722201179807095:1:1495.00
-00003102722201179814525:1:750.00
-00003102722201179814525:1:930.00
-00003102722201179808921:1:1000.00
-00003102722201179800875:1:1000.00
-00003102722201179801777:1:18000.00
-00003102722201179806878:1:1000.00
-00003102722201179803759:1:999.00
-00003102722201179808268:1:1000.00
-00003102722201179806210:1:5000.00
-00003102722201179801651:1:26100.00
-00003102722201179803844:1:40997.00
-00003102722201179805427:1:1000.00
-00003102722201179808610:1:1250.00
-00003102722201179802301:1:1000.00
-00003102722201179803758:1:9600.00
-00003102722201179808552:1:1088.00
-00003102722201179808912:1:1000.00
-00003102722201179803700:1:1000.00
-00003102722201179801731:1:50.00
-00003102722201179801651:1:26000.00
-00003102722201179809105:1:1035.00
-00003102722201179808253:1:872.00
-00003102722201179804779:1:1000.00
-00003102722201179814203:1:1000.00
-00003102722201179802301:1:100.00
-00003102722201179803403:1:101.00
-00003102722201179807400:1:1000.00
-00003102722201179806217:1:1000.00
-00003102722201179813460:1:7085.00
-00003102722201179808913:1:1000.00
-00003102722201179800692:1:2000.00
-00003102722201179808295:1:5403.00
-00003102722201179800692:1:2000.00
-00003102722201179803140:1:1000.00
-00003102722201179803759:1:999.00
-00003102722201179803701:1:5710.00
-00003102722201179805048:1:920.00
-00003102722201179804792:1:15.00
-00003102722201179803844:1:19995.00
-00003102722201179803020:1:1207.00
-00003102722201179804792:1:2376.00
-00003102722201179803905:1:1200.00
-00003102722201179805044:1:500.00
-00003102722201179802026:1:20.00
-00003102722201179803905:1:10.00
-00003102722201179803152:1:995.00
-00003102722201179803844:1:49995.00
-00003102722201179803844:1:9997.00
-00003102722201179804725:1:5980.00
-00003102722201179805042:1:1003.00
-00003102722201179804725:1:4580.00
-00003102722201179803701:1:380.00
-00003102722201179804725:1:12580.00
-00003102722201179803900:1:1000.00
-00003102722201179803701:1:310.00
-00003102722201179808253:1:672.00
-00003102722201179811118:1:1000.00
-00003102722201179814214:1:1000.00
-00003102722201179803701:1:180.00
-00003102722201179801165:1:1000.00
-00003102722201179803701:1:285.00
-00003102722201179803441:1:7356.80
-00003102722201179803701:1:260.00
-00003102722201179802776:1:10060.00
-00003102722201179803914:1:1000.00
-00003102722201179801682:1:1000.00
-00003102722201179801608:1:3435.00
-00003102722201179806870:1:1000.00
-00003102722201179801682:1:900.00
-00003102722201179806776:1:19247.00
-00003102722201179804282:1:1000.00
-00003102722201179803152:1:996.00
-00003102722201179803150:1:49896.90
-00003102722201179801688:1:1000.00
-00003102722201179801791:1:16200.00
-00003102722201179808914:1:11000.00
-00003102722201179806887:1:1000.00
-00003102722201179805048:1:780.00
-00003102722201179812017:1:10.00
-00003102722201179803868:1:1000.00
-00003102722201179802776:1:11562.00
-00003102722201179801183:1:1000.00
-00003102722201179800671:1:4950.00
-00003102722201179803868:1:1000.00
-00003102722201179803868:1:1000.00
-00003102722201179801585:1:1006.00
-00003102722201179814210:1:1000.00
-00003102722201179809143:1:1000.00
-00003102722201179809143:1:50.00
-00003102722201179803868:1:1000.00
-00003102722201179809143:1:5000.00
-00003102722201179806231:1:1000.00
-00003102722201179806800:1:4376.00
-00003102722201179801699:1:1000.00
-00003102722201179806466:1:1000.00
-00003102722201179803258:1:10.00
-00003102722201179812255:1:100.00
-00003102722201179803649:1:99.00
-00003102722201179805048:1:550.00
-00003102722201179812255:1:1000.00
-00003102722201179806906:1:17530.00
-00003102722201179803005:1:1000.00
-00003102722201179803005:1:586.00
-00003102722201179801843:1:717.00
-00003102722201179803649:1:32999.00
-00003102722201179800876:1:1201.00
-00003102722201179801843:1:917.00
-00003102722201179801843:1:2157.00
-00003102722201179807401:1:100.00
-00003102722201179805039:1:13560.00
-00003102722201179807401:1:7000.00
-00003102722201179808253:1:1632.00
-00003102722201179801699:1:9800.00
-00003102722201179806982:1:300.00
-00003102722201179814215:1:1000.00
-00003102722201179801122:1:1000.00
-00003102722201179808559:1:1080.00
-00003102722201179811145:1:1500.00
-00003102722201179808041:1:3258.00
-00003102722201179803649:1:12399.00
-00003102722201179815779:1:100.00
-00003102722201179806700:1:1028.00
-00003102722201179803649:1:15499.00
-00003102722201179801688:1:5150.00
-00003102722201179808240:1:1000.00
-00003102722201179802301:1:5380.00
-00003102722201179811145:1:6380.00
-00003102722201179801198:1:1000.00
-00003102722201179803155:1:24580.00
-00003102722201179806982:1:1023.00
-00003102722201179801688:1:5015.00
-00003102722201179803649:1:26998.00
-00003102722201179806982:1:8236.00
-00003102722201179800899:1:1000.00
-00003102722201179800899:1:1000.00
-00003102722201179801688:1:3218.00
-00003102722201179806822:1:1000.00
-00003102722201179812750:1:10.00
-00003102722201179812552:1:1000.00
-00003102722201179808460:1:1000.00
-00003102722201179815779:1:1001.00
-00003102722201179812750:1:1000.00
-00003102722201179812750:1:4360.00
-00003102722201179808460:1:1000.00
-00003102722201179804715:1:1000.00
-00003102722201179811149:1:1235.00
-00003102722201179808244:1:7550.00
-00003102722201179808254:1:1008.00
-00003102722201179803649:1:101.99
-00003102722201179803649:1:14898.00
-00003102722201179802192:1:1000.00
-00003102722201179803649:1:29998.00
-00003102722201179811144:1:1008.00
-00003102722201179802716:1:1245.00
-00003102722201179809101:1:3984.00
-00003102722201179803649:1:10099.00
-00003102722201179811301:1:1545.00
-00003102722201179808244:1:12500.00
-00003102722201179802859:1:1000.00
-00003102722201179809101:1:2957.00
-00003102722201179802193:1:1000.00
-00003102722201179803790:1:1000.00
-00003102722201179806906:1:22700.00
-00003102722201179806906:1:36800.00
-00003102722201179802716:1:642.00
-00003102722201179803941:1:830.00
-00003102722201179800873:1:980.00
-00003102722201179800873:1:990.00
-00003102722201179800873:1:990.05
-00003102722201179803941:1:975.00
-00003102722201179803152:1:998.00
-00003102722201179800873:1:990.05
-00003102722201179804721:1:9650.00
-00003102722201179802301:1:4600.00
-00003102722201179802716:1:134.00
-00003102722201179800873:1:995.05
-00003102722201179800873:1:996.65
-00003102722201179818949:1:1100.00
-00003102722201179801637:1:1000.00
-00003102722201179808939:1:1001.20
-00003102722201179814220:1:1000.00
-00003102722201179803649:1:19599.00
-00003102722201179805975:1:1000.00
-00003102722201179805975:1:9000.00
-00003102722201179805975:1:15000.00
-00003102722201179803793:1:1100.00
-00003102722201179801668:1:1000.00
-00003102722201179805150:1:1020.00
-00003102722201179801842:1:4999.00
-00003102722201179803759:1:999.00
-00003102722201179801140:1:1000.00
-00003102722201179813170:1:3135.00
-00003102722201179803759:1:999.00
-00003102722201179801694:1:2000.00
-00003102722201179801140:1:1850.00
-00003102722201179801694:1:3500.00
-00003102722201179803759:1:900.00
-00003102722201179803905:1:9876.00
-00003102722201179803538:1:1268.00
-00003102722201179803759:1:860.00
-00003102722201179803793:1:4300.00
-00003102722201179803963:1:1000.00
-00003102722201179805149:1:40.00
-00003102722201179808966:1:3500.00
-00003102722201179801773:1:1000.00
-00003102722201179812108:1:1000.00
-00003102722201179803793:1:6740.00
-00003102722201179818926:1:1000.00
-00003102722201179803962:1:1000.00
-00003102722201179802337:1:4268.00
-00003102722201179804287:1:1000.00
-00003102722201179808071:1:1000.00
-00003102722201179808071:1:1000.00
-00003102722201179803604:1:10.00
-00003102722201179808604:1:2200.30
-00003102722201179803719:1:1000.00
-00003102722201179809124:1:1025.00
-00003102722201179803761:1:1000.00
-00003102722201179813491:1:10.00
-00003102722201179813462:1:1000.00
-00003102722201179805048:1:940.00
-00003102722201179801843:1:283.00
-00003102722201179813462:1:1000.00
-00003102722201179809059:1:1000.00
-00003102722201179801843:1:543.00
-00003102722201179803604:1:10.00
-00003102722201179801843:1:1083.00
-00003102722201179804889:1:1000.00
-00003102722201179813164:1:1000.00
-00003102722201179810997:1:1000.00
-00003102722201179814218:1:2876.00
-00003102722201179813164:1:965.00
-00003102722201179814213:1:1000.00
-00003102722201179803797:1:1000.00
-00003102722201179806800:1:4414.00
-00003102722201179804280:1:1000.00
-00003102722201179803547:1:1000.00
-00003102722201179807644:1:1004.00
-00003102722201179813218:1:1023.00
-00003102722201179803151:1:1000.00
-00003102722201179809135:1:1160.00
-00003102722201179806983:1:641.00
-00003102722201179813218:1:9865.00
-00003102722201179805048:1:980.00
-00003102722201179804310:1:10000.00
-00003102722201179801122:1:900.00
-00003102722201179804310:1:1000.00
-00003102722201179812010:1:1057.00
-00003102722201179803766:1:1000.00
-00003102722201179801122:1:3900.00
-00003102722201179816190:1:1000.00
-00003102722201179803604:1:2999.99
-00003102722201179813218:1:7523.00
-00003102722201179803600:1:12.00
-00003102722201179803547:1:4050.00
-00003102722201179806701:1:1374.00
-00003102722201179803822:1:1000.00
-00003102722201179809128:1:1335.00
-00003102722201179806985:1:1000.00
-00003102722201179812131:1:1000.00
-00003102722201179813328:1:1110.00
-00003102722201179803155:1:28460.00
-00003102722201179803155:1:29430.00
-00003102722201179802739:1:10.00
-00003102722201179802739:1:1000.00
-00003102722201179802020:1:1238.00
-00003102722201179814524:1:2540.00
-00003102722201179816183:1:253.00
-00003102722201179816183:1:6523.00
-00003102722201179816183:1:2536.00
-00003102722201179803153:1:1000.00
-00003102722201179808400:1:1023.00
-00003102722201179808248:1:1054.00
-00003102722201179816183:1:3265.00
-00003102722201179803153:1:1227.00
-00003102722201179816183:1:2362.00
-00003102722201179805141:1:1000.00
-00003102722201179816183:1:2635.00
-00003102722201179814524:1:1055.00
-00003102722201179803151:1:495.00
-00003102722201179800870:1:1860.00
-00003102722201179812150:1:1000.00
-00003102722201179814524:1:1611.00
-00003102722201179808248:1:3755.00
-00003102722201179803601:1:2570.00
-00003102722201179804896:1:1000.00
-00003102722201179804896:1:1586.00
-00003102722201179802783:1:124.00
-00003102722201179814217:1:1000.00
-00003102722201179804791:1:1117.00
-00003102722201179808800:1:1000.00
-00003102722201179808294:1:5000.00
-00003102722201179803793:1:5573.00
-00003102722201179808934:1:1001.00
-00003102722201179802315:1:10.00
-00003102722201179808291:1:100.00
-00003102722201179803701:1:925.00
-00003102722201179804211:1:1000.00
-00003102722201179803701:1:870.00
-00003102722201179812113:1:1000.00
-00003102722201179803701:1:958.00
-00003102722201179808934:1:990.00
-00003102722201179802626:1:3568.00
-00003102722201179808934:1:950.00
-00003102722201179808876:1:769.00
-00003102722201179808934:1:970.00
-00003102722201179808876:1:873.00
-00003102722201179807808:1:10.00
-00003102722201179803151:1:657.00
-00003102722201179803155:1:17680.00
-00003102722201179803155:1:19540.00
-00003102722201179802626:1:1000.00
-00003102722201179805048:1:880.00
-00003102722201179803155:1:17650.00
-00003102722201179806208:1:1000.00
-00003102722201179806873:1:1000.00
-00003102722201179805436:1:1000.00
-00003102722201179801794:1:7532.00
-00003102722201179803766:1:1742.00
-00003102722201179803766:1:7000.00
-00003102722201179803701:1:980.00
-00003102722201179803151:1:829.00
-00003102722201179803701:1:968.00
-00003102722201179803766:1:6958.00
-00003102722201179808801:1:13459.67
-00003102722201179818911:1:1000.00
-00003102722201179803151:1:427.00
-00003102722201179805152:1:1100.00
-00003102722201179810994:1:1000.00
-00003102722201179803701:1:95.00
-00003102722201179803157:1:1000.00
-00003102722201179802302:1:1000.00
-00003102722201179803793:1:3897.00
-00003102722201179805155:1:1010.00
-00003102722201179801573:1:1100.00
-00003102722201179810997:1:33000.00
-00003102722201179800873:1:997.50
-00003102722201179800873:1:998.50
-00003102722201179801125:1:1000.00
-00003102722201179804507:1:20.00
-00003102722201179810997:1:30000.00
-00003102722201179807642:1:1019.00
-00003102722201179804507:1:4998.00
-00003102722201179808247:1:1007.00
-00003102722201179803151:1:623.00
-00003102722201179814219:1:1000.00
-00003102722201179801145:1:1000.00
-00003102722201179807642:1:6500.00
-00003102722201179807642:1:5700.00
-00003102722201179801333:1:10.00
-00003102722201179807642:1:1500.00
-00003102722201179807642:1:6742.00
-00003102722201179803151:1:843.00
-00003102722201179803151:1:986.00
-00003102722201179801125:1:23.00
-00003102722201179803151:1:978.00
-00003102722201179800873:1:998.50
-00003102722201179808234:1:5569.00
-00003102722201179807642:1:6759.00
-00003102722201179803151:1:864.00
-00003102722201179806969:1:10.00
-00003102722201179803151:1:605.00
-00003102722201179818926:1:7000.00
-00003102722201179804895:1:10.00
-00003102722201179804895:1:1000.00
-00003102722201179804895:1:990.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179805425:1:500.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:4000.00
-00003102722201179804895:1:2000.00
-00003102722201179804895:1:6000.00
-00003102722201179805044:1:5697.00
-00003102722201179808268:1:8000.00
-00003102722201179804895:1:985.00
-00003102722201179804895:1:1950.00
-00003102722201179806326:1:3417.00
-00003102722201179801651:1:25200.00
-00003102722201179801699:1:9500.00
-00003102722201179801699:1:1000.00
-00003102722201179801699:1:1000.00
-00003102722201179801651:1:24700.00
-00003102722201179803854:1:5000.00
-00003102722201179803761:1:873.00
-00003102722201179814218:1:2148.00
-00003102722201179804507:1:2980.00
-00003102722201179814204:1:7880.00
-00003102722201179804507:1:5000.00
-00003102722201179803603:1:1000.00
-00003102722201179808921:1:22979.00
-00003102722201179803761:1:917.00
-00003102722201179804288:1:1000.00
-00003102722201179802739:1:18.97
-00003102722201179801651:1:24000.00
-00003102722201179803761:1:897.00
-00003102722201179815779:1:4900.00
-00003102722201179803761:1:297.00
-00003102722201179801693:1:1000.00
-00003102722201179801693:1:1000.00
-00003102722201179803547:1:5010.00
-00003102722201179815779:1:4300.00
-00003102722201179801651:1:24000.00
-00003102722201179808939:1:145.00
-00003102722201179808044:1:999.00
-00003102722201179803044:1:1000.00
-00003102722201179808044:1:990.00
-00003102722201179806408:1:2105.00
-00003102722201179808555:1:1002.00
-00003102722201179808044:1:998.00
-00003102722201179808555:1:7000.00
-00003102722201179806800:1:4213.00
-00003102722201179808044:1:999.00
-00003102722201179808293:1:400.00
-00003102722201179801774:1:21.37
-00003102722201179805048:1:950.00
-00003102722201179801651:1:24550.00
-00003102722201179808044:1:999.00
-00003102722201179801774:1:2135.00
-00003102722201179803824:1:1000.00
-00003102722201179808044:1:998.00
-00003102722201179801752:1:36800.00
-00003102722201179804286:1:1000.00
-00003102722201179808044:1:999.00
-00003102722201179812105:1:14800.00
-00003102722201179808071:1:1000.00
-00003102722201179803963:1:7800.00
-00003102722201179803854:1:9965.00
-00003102722201179807631:1:3000.00
-00003102722201179805048:1:990.00
-00003102722201179801163:1:1550.00
-00003102722201179814221:1:1000.00
-00003102722201179812120:1:1000.00
-00003102722201179803900:1:10000.00
-00003102722201179803779:1:1000.00
-00003102722201179809087:1:1000.00
-00003102722201179802303:1:1000.00
-00003102722201179802716:1:1134.00
-00003102722201179803963:1:2300.00
-00003102722201179803927:1:10.00
-00003102722201179805154:1:1100.00
-00003102722201179804507:1:7980.00
-00003102722201179812120:1:994.00
-00003102722201179801759:1:500.00
-00003102722201179803901:1:6321.00
-00003102722201179801584:1:1007.00
-00003102722201179801128:1:1000.00
-00003102722201179808823:1:3869.00
-00003102722201179801584:1:7550.00
-00003102722201179801759:1:100.00
-00003102722201179814222:1:1000.00
-00003102722201179801756:1:5671.00
-00003102722201179808279:1:1000.00
-00003102722201179803832:1:570.00
-00003102722201179806326:1:3763.00
-00003102722201179804507:1:7980.00
-00003102722201179805192:1:5200.00
-00003102722201179805048:1:910.00
-00003102722201179801179:1:1000.00
-00003102722201179808044:1:999.00
-00003102722201179805192:1:800.00
-00003102722201179800899:1:986.00
-00003102722201179800899:1:968.00
-00003102722201179804507:1:8000.00
-00003102722201179808871:1:1000.00
-00003102722201179802716:1:5160.00
-00003102722201179808232:1:13520.00
-00003102722201179803779:1:1000.00
-00003102722201179807408:1:1280.00
-00003102722201179808279:1:868.00
-00003102722201179803779:1:1000.00
-00003102722201179812120:1:4016.00
-00003102722201179801759:1:6412.80
-00003102722201179803779:1:1000.00
-00003102722201179801759:1:1000.00
-00003102722201179804288:1:985.00
-00003102722201179805192:1:860.00
-00003102722201179812155:1:49988.90
-00003102722201179818964:1:1015.00
-00003102722201179812120:1:996.00
-00003102722201179803779:1:1000.00
-00003102722201179803832:1:10.00
-00003102722201179803779:1:1000.00
-00003102722201179803779:1:1000.00
-00003102722201179806801:1:1000.00
-00003102722201179803701:1:896.00
-00003102722201179805182:1:4008.00
-00003102722201179815552:1:1000.00
-00003102722201179812155:1:1000.00
-00003102722201179808949:1:1001.00
-00003102722201179808591:1:1010.00
-00003102722201179812120:1:998.00
-00003102722201179801588:1:1006.00
-00003102722201179807985:1:1001.00
-00003102722201179806801:1:522.00
-00003102722201179802024:1:199.00
-00003102722201179808828:1:6499.00
-00003102722201179802024:1:15841.01
-00003102722201179812191:1:1000.00
-00003102722201179805048:1:680.00
-00003102722201179803701:1:978.00
-00003102722201179800763:1:15.00
-00003102722201179800899:1:18635.00
-00003102722201179806701:1:3623.00
-00003102722201179802747:1:10.00
-00003102722201179803854:1:18000.00
-00003102722201179803779:1:1000.00
-00003102722201179808878:1:6596.00
-00003102722201179806701:1:4639.00
-00003102722201179801587:1:1007.00
-00003102722201179808939:1:269.00
-00003102722201179818929:1:1000.00
-00003102722201179806701:1:4362.00
-00003102722201179811122:1:1006.00
-00003102722201179818780:1:1110.00
-00003102722201179806701:1:5836.00
-00003102722201179818910:1:1000.00
-00003102722201179806989:1:859.00
-00003102722201179812552:1:997.00
-00003102722201179802739:1:1497.00
-00003102722201179803855:1:10010.00
-00003102722201179801153:1:1000.00
-00003102722201179803701:1:680.00
-00003102722201179813461:1:3520.00
-00003102722201179808878:1:7986.00
-00003102722201179816192:1:1000.00
-00003102722201179808860:1:1000.00
-00003102722201179808290:1:1000.00
-00003102722201179803416:1:1000.00
-00003102722201179806701:1:432.00
-00003102722201179805429:1:1000.00
-00003102722201179806704:1:1000.00
-00003102722201179801600:1:700.00
-00003102722201179803855:1:1000.00
-00003102722201179812170:1:1000.00
-00003102722201179806233:1:1264.00
-00003102722201179806705:1:1056.00
-00003102722201179813173:1:48200.00
-00003102722201179801730:1:532.15
-00003102722201179801693:1:15000.00
-00003102722201179804788:1:8163.00
-00003102722201179802748:1:10.00
-00003102722201179808974:1:1000.00
-00003102722201179802636:1:5888.00
-00003102722201179805048:1:850.00
-00003102722201179803416:1:800.00
-00003102722201179809124:1:4200.00
-00003102722201179813173:1:43600.00
-00003102722201179809124:1:4500.00
-00003102722201179808267:1:1050.00
-00003102722201179804749:1:200.00
-00003102722201179809124:1:2045.00
-00003102722201179800899:1:939.00
-00003102722201179808876:1:2639.00
-00003102722201179800899:1:981.00
-00003102722201179800899:1:993.00
-00003102722201179806775:1:1000.00
-00003102722201179800899:1:985.00
-00003102722201179808876:1:969.00
-00003102722201179818929:1:7000.00
-00003102722201179806800:1:4187.00
-00003102722201179805931:1:10.00
-00003102722201179803980:1:1200.00
-00003102722201179800899:1:988.00
-00003102722201179806729:1:1000.00
-00003102722201179808814:1:14850.00
-00003102722201179805130:1:1000.00
-00003102722201179801750:1:8500.00
-00003102722201179808812:1:20.00
-00003102722201179803757:1:1100.00
-00003102722201179802670:1:12500.00
-00003102722201179803964:1:5893.00
-00003102722201179811176:1:1000.00
-00003102722201179801586:1:712.00
-00003102722201179806707:1:10.97
-00003102722201179803249:1:100.00
-00003102722201179803964:1:5891.00
-00003102722201179807645:1:10.20
-00003102722201179802010:1:100.00
-00003102722201179804722:1:1256.00
-00003102722201179807645:1:1020.00
-00003102722201179805048:1:990.00
-00003102722201179809091:1:60.00
-00003102722201179806707:1:1087.00
-00003102722201179818929:1:1000.00
-00003102722201179808876:1:7639.00
-00003102722201179809091:1:1000.00
-00003102722201179803249:1:3950.00
-00003102722201179808039:1:1600.00
-00003102722201179803964:1:5891.00
-00003102722201179801587:1:1100.00
-00003102722201179801587:1:459.00
-00003102722201179803964:1:5893.00
-00003102722201179801587:1:428.00
-00003102722201179801587:1:1314.00
-00003102722201179808883:1:1050.00
-00003102722201179808217:1:1010.00
-00003102722201179811176:1:3021.00
-00003102722201179808883:1:2760.00
-00003102722201179809074:1:48765.30
-00003102722201179801675:1:1000.00
-00003102722201179801587:1:946.00
-00003102722201179800750:1:10.00
-00003102722201179808883:1:1890.00
-00003102722201179801587:1:350.00
-00003102722201179801587:1:1435.00
-00003102722201179810997:1:27500.00
-00003102722201179806983:1:583.00
-00003102722201179806706:1:1028.00
-00003102722201179812120:1:976.00
-00003102722201179807423:1:1200.00
-00003102722201179803601:1:1865.00
-00003102722201179810997:1:36000.00
-00003102722201179800750:1:4167.00
-00003102722201179810997:1:50000.00
-00003102722201179803825:1:1000.00
-00003102722201179803602:1:3100.00
-00003102722201179807423:1:120.00
-00003102722201179805184:1:470.00
-00003102722201179809119:1:1000.00
-00003102722201179803155:1:15728.00
-00003102722201179802666:1:1000.00
-00003102722201179801147:1:1000.00
-00003102722201179805983:1:1083.00
-00003102722201179800797:1:10000.00
-00003102722201179804507:1:7980.00
-00003102722201179801658:1:50005.00
-00003102722201179812552:1:991.00
-00003102722201179803538:1:2676.00
-00003102722201179803538:1:1684.00
-00003102722201179800750:1:3294.00
-00003102722201179803538:1:2948.00
-00003102722201179803944:1:998.00
-00003102722201179801586:1:2342.00
-00003102722201179813460:1:4651.00
-00003102722201179805426:1:1000.00
-00003102722201179805426:1:1700.00
-00003102722201179803944:1:1000.00
-00003102722201179814216:1:1000.00
-00003102722201179804507:1:7080.00
-00003102722201179809074:1:30.00
-00003102722201179804287:1:1354.00
-00003102722201179801500:1:1006.00
-00003102722201179805426:1:10.00
-00003102722201179807095:1:2022.00
-00003102722201179800877:1:1050.00
-00003102722201179803701:1:260.00
-00003102722201179805426:1:1700.00
-00003102722201179806709:1:1000.00
-00003102722201179803602:1:100.00
-00003102722201179811173:1:23011.00
-00003102722201179803939:1:1000.00
-00003102722201179801650:1:20000.00
-00003102722201179810997:1:41500.00
-00003102722201179803701:1:270.00
-00003102722201179804280:1:24998.00
-00003102722201179807997:1:1000.00
-00003102722201179805426:1:4500.00
-00003102722201179803766:1:13800.00
-00003102722201179800790:1:674.00
-00003102722201179800790:1:3648.00
-00003102722201179808248:1:3985.00
-00003102722201179801137:1:6555.00
-00003102722201179800796:1:34980.00
-00003102722201179803701:1:986.00
-00003102722201179809134:1:1000.00
-00003102722201179801142:1:1000.00
-00003102722201179803766:1:13080.00
-00003102722201179808553:1:1100.00
-00003102722201179803797:1:3264.00
-00003102722201179808039:1:39000.00
-00003102722201179806315:1:1050.00
-00003102722201179803944:1:1000.00
-00003102722201179809096:1:1001.00
-00003102722201179805427:1:1900.00
-00003102722201179803779:1:1000.00
-00003102722201179807643:1:1010.00
-00003102722201179803797:1:4135.00
-00003102722201179801326:1:100.00
-00003102722201179809096:1:15.00
-00003102722201179808074:1:1548.00
-00003102722201179801122:1:3000.00
-00003102722201179801587:1:156.00
-00003102722201179805193:1:1100.00
-00003102722201179800899:1:983.00
-00003102722201179804285:1:1000.00
-00003102722201179803178:1:1000.00
-00003102722201179801122:1:3180.00
-00003102722201179803797:1:4263.00
-00003102722201179808956:1:1000.00
-00003102722201179802347:1:11.00
-00003102722201179806708:1:1000.00
-00003102722201179811143:1:1000.00
-00003102722201179805155:1:16100.00
-00003102722201179809074:1:48956.43
-00003102722201179806906:1:31400.00
-00003102722201179806906:1:13400.00
-00003102722201179803760:1:1000.00
-00003102722201179803962:1:996.00
-00003102722201179804283:1:1000.00
-00003102722201179806409:1:10.00
-00003102722201179806906:1:6750.00
-00003102722201179801122:1:2800.00
-00003102722201179802331:1:1001.00
-00003102722201179818964:1:25083.00
-00003102722201179804739:1:1100.00
-00003102722201179811175:1:1000.00
-00003102722201179803157:1:8235.00
-00003102722201179803701:1:972.00
-00003102722201179802603:1:15680.00
-00003102722201179801326:1:10001.00
-00003102722201179811143:1:4986.00
-00003102722201179806278:1:1000.00
-00003102722201179804661:1:3000.00
-00003102722201179804384:1:2700.00
-00003102722201179808870:1:1000.00
-00003102722201179814226:1:1000.00
-00003102722201179801183:1:2460.00
-00003102722201179805149:1:1815.28
-00003102722201179805155:1:11500.00
-00003102722201179808863:1:1600.00
-00003102722201179801608:1:782.00
-00003102722201179813170:1:3216.00
-00003102722201179803427:1:10.00
-00003102722201179818929:1:4500.00
-00003102722201179801730:1:200.00
-00003102722201179803701:1:475.00
-00003102722201179803757:1:975.00
-00003102722201179803905:1:9815.00
-00003102722201179808939:1:912.00
-00003102722201179808823:1:7652.00
-00003102722201179812068:1:1000.00
-00003102722201179802743:1:1542.00
-00003102722201179808401:1:10.00
-00003102722201179808253:1:1831.00
-00003102722201179803755:1:1000.00
-00003102722201179812552:1:996.00
-00003102722201179809120:1:1000.00
-00003102722201179811408:1:1000.00
-00003102722201179808253:1:2155.00
-00003102722201179800899:1:8938.00
-00003102722201179801146:1:8050.00
-00003102722201179805008:1:906.00
-00003102722201179803701:1:860.00
-00003102722201179803834:1:1000.00
-00003102722201179801961:1:20.00
-00003102722201179808939:1:867.00
-00003102722201179806710:1:1000.00
-00003102722201179818701:1:1000.00
-00003102722201179800796:1:32000.00
-00003102722201179800899:1:26356.00
-00003102722201179801146:1:21785.00
-00003102722201179804733:1:325.00
-00003102722201179813184:1:3080.00
-00003102722201179808401:1:1000.00
-00003102722201179811143:1:9632.00
-00003102722201179806708:1:5000.00
-00003102722201179803834:1:965.00
-00003102722201179808401:1:980.00
-00003102722201179803944:1:998.00
-00003102722201179812105:1:1000.00
-00003102722201179808442:1:1000.01
-00003102722201179801146:1:6375.00
-00003102722201179807643:1:3580.00
-00003102722201179812131:1:590.00
-00003102722201179808236:1:3287.00
-00003102722201179808253:1:735.00
-00003102722201179814202:1:980.11
-00003102722201179808616:1:1000.00
-00003102722201179806250:1:1000.00
-00003102722201179801146:1:9275.00
-00003102722201179803930:1:1000.00
-00003102722201179803603:1:2584.00
-00003102722201179814219:1:30000.00
-00003102722201179814202:1:765.53
-00003102722201179803249:1:4350.00
-00003102722201179801843:1:1750.00
-00003102722201179808877:1:22222.15
-00003102722201179803688:1:1000.00
-00003102722201179809143:1:900.00
-00003102722201179812121:1:1000.00
-00003102722201179809143:1:800.00
-00003102722201179809101:1:1900.00
-00003102722201179809101:1:1837.00
-00003102722201179801843:1:750.00
-00003102722201179812085:1:6635.00
-00003102722201179801843:1:750.00
-00003102722201179814228:1:1000.00
-00003102722201179800899:1:28963.00
-00003102722201179803944:1:1000.00
-00003102722201179800763:1:9165.00
-00003102722201179803688:1:50000.00
-00003102722201179818929:1:998.00
-00003102722201179808122:1:590.00
-00003102722201179806808:1:1000.00
-00003102722201179811109:1:999.99
-00003102722201179806200:1:1000.00
-00003102722201179801197:1:1000.00
-00003102722201179802315:1:1000.00
-00003102722201179806409:1:1000.00
-00003102722201179800763:1:9685.00
-00003102722201179807997:1:12358.00
-00003102722201179804745:1:50.00
-00003102722201179815551:1:1000.00
-00003102722201179806452:1:1000.00
-00003102722201179808939:1:945.00
-00003102722201179801125:1:947.00
-00003102722201179803848:1:9400.00
-00003102722201179811305:1:1000.00
-00003102722201179806251:1:1000.00
-00003102722201179803848:1:9700.00
-00003102722201179808900:1:1028.00
-00003102722201179807422:1:1062.84
-00003102722201179802315:1:1000.00
-00003102722201179801666:1:1000.00
-00003102722201179805425:1:10.00
-00003102722201179803848:1:9500.00
-00003102722201179803848:1:10000.00
-00003102722201179809101:1:500.00
-00003102722201179806871:1:1000.00
-00003102722201179803848:1:8970.00
-00003102722201179810997:1:21000.00
-00003102722201179808554:1:1080.00
-00003102722201179808861:1:1025.00
-00003102722201179803944:1:998.00
-00003102722201179801730:1:231.22
-00003102722201179809047:1:1200.00
-00003102722201179803848:1:5010.00
-00003102722201179801845:1:1000.00
-00003102722201179803760:1:995.00
-00003102722201179801666:1:1008.00
-00003102722201179808804:1:1000.00
-00003102722201179806986:1:1000.00
-00003102722201179803914:1:990.00
-00003102722201179811124:1:588.00
-00003102722201179806980:1:9975.00
-00003102722201179804383:1:17523.33
-00003102722201179808861:1:4900.00
-00003102722201179811430:1:10.80
-00003102722201179806986:1:1800.00
-00003102722201179803538:1:2694.00
-00003102722201179804268:1:1000.00
-00003102722201179803285:1:2088.00
-00003102722201179818702:1:1000.00
-00003102722201179803299:1:1005.00
-00003102722201179804748:1:15.00
-00003102722201179804766:1:253.00
-00003102722201179803766:1:29000.00
-00003102722201179808414:1:1200.00
-00003102722201179808557:1:1105.00
-00003102722201179803766:1:35100.00
-00003102722201179806261:1:1000.00
-00003102722201179800790:1:2847.00
-00003102722201179803601:1:1560.00
-00003102722201179805048:1:960.00
-00003102722201179808414:1:1345.00
-00003102722201179816185:1:1660.00
-00003102722201179801182:1:1000.00
-00003102722201179805048:1:980.00
-00003102722201179805048:1:780.00
-00003102722201179804888:1:1000.00
-00003102722201179805158:1:1100.00
-00003102722201179818949:1:2900.00
-00003102722201179801696:1:7528.00
-00003102722201179800899:1:983.00
-00003102722201179805048:1:820.00
-00003102722201179803944:1:1000.00
-00003102722201179812085:1:1000.00
-00003102722201179801589:1:1000.00
-00003102722201179802301:1:5100.00
-00003102722201179811147:1:7347.00
-00003102722201179811124:1:1488.00
-00003102722201179803601:1:3870.00
-00003102722201179806452:1:10010.00
-00003102722201179809083:1:12.00
-00003102722201179802689:1:5000.00
-00003102722201179802665:1:3612.00
-00003102722201179802689:1:1580.00
-00003102722201179802689:1:5260.00
-00003102722201179808862:1:3250.00
-00003102722201179801710:1:4095.00
-00003102722201179808934:1:980.00
-00003102722201179802689:1:4650.00
-00003102722201179818966:1:1000.00
-00003102722201179804792:1:1478.00
-00003102722201179811104:1:3103.03
-00003102722201179803442:1:4825.00
-00003102722201179811124:1:800.00
-00003102722201179804768:1:155.00
-00003102722201179811124:1:2650.00
-00003102722201179808934:1:930.00
-00003102722201179801666:1:20000.00
-00003102722201179803967:1:1000.00
-00003102722201179808965:1:2863.50
-00003102722201179806711:1:1000.00
-00003102722201179815582:1:1000.00
-00003102722201179802689:1:2600.00
-00003102722201179802689:1:5230.00
-00003102722201179803061:1:25.55
-00003102722201179811124:1:1001.00
-00003102722201179808965:1:1307.68
-00003102722201179811446:1:3999.90
-00003102722201179811448:1:10000.00
-00003102722201179818929:1:1000.00
-00003102722201179808863:1:7945.00
-00003102722201179808122:1:2290.00
-00003102722201179801170:1:2235.00
-00003102722201179802337:1:20000.00
-00003102722201179805976:1:1000.00
-00003102722201179808440:1:1000.00
-00003102722201179811112:1:1001.00
-00003102722201179813169:1:960.00
-00003102722201179809175:1:1000.00
-00003102722201179806763:1:100.00
-00003102722201179803848:1:3000.00
-00003102722201179805159:1:1100.00
-00003102722201179802665:1:1000.00
-00003102722201179815587:1:1000.00
-00003102722201179806701:1:3629.00
-00003102722201179808826:1:2000.00
-00003102722201179804705:1:1000.00
-00003102722201179804792:1:1238.00
-00003102722201179801650:1:440.00
-00003102722201179808127:1:15300.00
-00003102722201179811448:1:10000.00
-00003102722201179815499:1:1790.00
-00003102722201179806701:1:3523.00
-00003102722201179808127:1:100.00
-00003102722201179803962:1:996.00
-00003102722201179813252:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179808127:1:52100.00
-00003102722201179811430:1:1080.00
-00003102722201179806982:1:13230.00
-00003102722201179809128:1:844.00
-00003102722201179808433:1:1000.00
-00003102722201179811446:1:5999.00
-00003102722201179808266:1:1788.00
-00003102722201179808646:1:5000.00
-00003102722201179806769:1:1035.00
-00003102722201179808747:1:10.00
-00003102722201179806969:1:2560.00
-00003102722201179803761:1:3957.00
-00003102722201179801313:1:10.00
-00003102722201179803757:1:980.00
-00003102722201179808248:1:1795.00
-00003102722201179808248:1:3492.00
-00003102722201179802745:1:1035.00
-00003102722201179806989:1:964.00
-00003102722201179808883:1:2210.00
-00003102722201179802745:1:1280.00
-00003102722201179806980:1:5471.00
-00003102722201179807496:1:1200.00
-00003102722201179814524:1:2440.00
-00003102722201179804767:1:1000.00
-00003102722201179808934:1:900.00
-00003102722201179808934:1:920.00
-00003102722201179808801:1:16597.68
-00003102722201179803760:1:988.00
-00003102722201179808934:1:940.00
-00003102722201179804763:1:199.00
-00003102722201179808934:1:900.00
-00003102722201179812085:1:998.00
-00003102722201179818702:1:12000.00
-00003102722201179803061:1:1580.00
-00003102722201179806979:1:10063.00
-00003102722201179808811:1:1000.00
-00003102722201179808934:1:930.00
-00003102722201179803701:1:95.00
-00003102722201179813752:1:1238.00
-00003102722201179813752:1:2869.00
-00003102722201179806312:1:1000.00
-00003102722201179803701:1:126.00
-00003102722201179802003:1:100.00
-00003102722201179803701:1:160.00
-00003102722201179806312:1:1000.00
-00003102722201179806808:1:850.00
-00003102722201179802744:1:1000.00
-00003102722201179802003:1:200.00
-00003102722201179808957:1:1000.00
-00003102722201179803701:1:90.00
-00003102722201179803701:1:210.00
-00003102722201179806105:1:1988.00
-00003102722201179809129:1:2540.00
-00003102722201179803701:1:240.00
-00003102722201179806312:1:1000.00
-00003102722201179802627:1:13270.00
-00003102722201179806105:1:1998.00
-00003102722201179809046:1:1000.00
-00003102722201179803701:1:150.00
-00003102722201179808934:1:860.00
-00003102722201179808401:1:1000.00
-00003102722201179806312:1:1000.00
-00003102722201179808113:1:1000.00
-00003102722201179803260:1:1128.00
-00003102722201179803724:1:1420.00
-00003102722201179803260:1:706.00
-00003102722201179813147:1:1000.00
-00003102722201179807289:1:10.00
-00003102722201179808403:1:1000.00
-00003102722201179806312:1:1000.00
-00003102722201179811306:1:1000.00
-00003102722201179803260:1:1769.00
-00003102722201179806312:1:1000.00
-00003102722201179803701:1:160.00
-00003102722201179803701:1:95.00
-00003102722201179801843:1:1250.00
-00003102722201179801843:1:1250.00
-00003102722201179800764:1:1023.00
-00003102722201179803701:1:80.00
-00003102722201179801843:1:2250.00
-00003102722201179806326:1:4103.00
-00003102722201179806312:1:1000.00
-00003102722201179806326:1:3591.00
-00003102722201179813753:1:10.00
-00003102722201179803832:1:5300.00
-00003102722201179802626:1:4020.00
-00003102722201179803760:1:955.00
-00003102722201179803701:1:110.00
-00003102722201179802035:1:1000.00
-00003102722201179803701:1:95.00
-00003102722201179813331:1:1008.00
-00003102722201179802623:1:1000.00
-00003102722201179808934:1:980.00
-00003102722201179811104:1:1594.56
-00003102722201179814110:1:1000.00
-00003102722201179813752:1:3986.00
-00003102722201179807289:1:10.00
-00003102722201179808868:1:1000.00
-00003102722201179807289:1:10.00
-00003102722201179803741:1:1100.00
-00003102722201179802312:1:99.00
-00003102722201179808414:1:1539.00
-00003102722201179802312:1:299.00
-00003102722201179808042:1:4000.00
-00003102722201179802312:1:1099.00
-00003102722201179808710:1:100.00
-00003102722201179807304:1:1050.00
-00003102722201179804895:1:6000.00
-00003102722201179808911:1:193.00
-00003102722201179806408:1:1000.00
-00003102722201179804280:1:5876.00
-00003102722201179808495:1:1000.00
-00003102722201179801756:1:8794.00
-00003102722201179800899:1:993.00
-00003102722201179815552:1:105.00
-00003102722201179800899:1:969.00
-00003102722201179801586:1:1039.00
-00003102722201179812120:1:986.00
-00003102722201179806312:1:1000.00
-00003102722201179801650:1:7400.00
-00003102722201179809134:1:13500.00
-00003102722201179801608:1:8235.00
-00003102722201179811143:1:2008.00
-00003102722201179805425:1:985.00
-00003102722201179807289:1:10.00
-00003102722201179807289:1:980.00
-00003102722201179807289:1:18.00
-00003102722201179809126:1:10.00
-00003102722201179809126:1:950.00
-00003102722201179809126:1:40.00
-00003102722201179806326:1:4179.00
-00003102722201179803249:1:4535.00
-00003102722201179804433:1:1000.00
-00003102722201179801791:1:14900.00
-00003102722201179801588:1:12580.00
-00003102722201179801588:1:22680.00
-00003102722201179801588:1:24740.00
-00003102722201179803944:1:1000.00
-00003102722201179805192:1:500.00
-00003102722201179808294:1:1000.00
-00003102722201179809036:1:206.00
-00003102722201179804383:1:16233.33
-00003102722201179813753:1:8200.00
-00003102722201179808294:1:7000.00
-00003102722201179813753:1:1400.00
-00003102722201179809036:1:16324.00
-00003102722201179801676:1:1000.00
-00003102722201179813753:1:11200.00
-00003102722201179808617:1:1000.00
-00003102722201179801676:1:1000.00
-00003102722201179803402:1:100.00
-00003102722201179805164:1:1010.00
-00003102722201179804767:1:1000.00
-00003102722201179801676:1:1000.00
-00003102722201179802850:1:4000.00
-00003102722201179812779:1:1000.00
-00003102722201179809083:1:732.00
-00003102722201179803249:1:4445.20
-00003102722201179811151:1:1000.00
-00003102722201179812120:1:5035.00
-00003102722201179803967:1:20000.00
-00003102722201179812120:1:4025.00
-00003102722201179803152:1:997.00
-00003102722201179806932:1:1000.00
-00003102722201179804439:1:1000.00
-00003102722201179818922:1:1000.00
-00003102722201179801699:1:1000.00
-00003102722201179801699:1:1000.00
-00003102722201179801125:1:273.00
-00003102722201179805424:1:1000.00
-00003102722201179801699:1:7800.00
-00003102722201179806874:1:1000.00
-00003102722201179800763:1:9465.00
-00003102722201179805425:1:5015.00
-00003102722201179805023:1:1000.00
-00003102722201179803944:1:998.00
-00003102722201179805023:1:3580.00
-00003102722201179812209:1:1000.00
-00003102722201179800763:1:8415.00
-00003102722201179802651:1:1000.00
-00003102722201179814230:1:1000.00
-00003102722201179808931:1:1578.00
-00003102722201179801347:1:800.00
-00003102722201179803249:1:2695.00
-00003102722201179803152:1:997.00
-00003102722201179802651:1:1918.00
-00003102722201179809101:1:900.00
-00003102722201179814110:1:4000.00
-00003102722201179812155:1:50000.00
-00003102722201179808338:1:1688.00
-00003102722201179808827:1:3254.00
-00003102722201179808338:1:1680.00
-00003102722201179801167:1:12680.00
-00003102722201179808258:1:4000.00
-00003102722201179818924:1:1000.00
-00003102722201179808708:1:1000.00
-00003102722201179811224:1:1000.00
-00003102722201179803249:1:4520.00
-00003102722201179803792:1:1100.00
-00003102722201179806983:1:538.00
-00003102722201179801650:1:15000.00
-00003102722201179806461:1:1000.00
-00003102722201179811103:1:582.00
-00003102722201179804768:1:1425.00
-00003102722201179808040:1:2698.00
-00003102722201179808113:1:986.00
-00003102722201179808217:1:995.00
-00003102722201179812191:1:500.00
-00003102722201179808217:1:1000.00
-00003102722201179803792:1:1000.00
-00003102722201179808750:1:2950.00
-00003102722201179812191:1:1000.00
-00003102722201179804432:1:1000.00
-00003102722201179803569:1:1000.00
-00003102722201179801635:1:5389.00
-00003102722201179807682:1:8763.00
-00003102722201179808750:1:3550.00
-00003102722201179803974:1:1000.00
-00003102722201179806960:1:1000.00
-00003102722201179809082:1:1560.00
-00003102722201179803249:1:4482.00
-00003102722201179806105:1:2658.00
-00003102722201179802401:1:1100.00
-00003102722201179800899:1:6865.00
-00003102722201179803299:1:830.00
-00003102722201179813216:1:3400.00
-00003102722201179803299:1:3750.00
-00003102722201179803299:1:9170.00
-00003102722201179803299:1:3750.00
-00003102722201179803553:1:10.00
-00003102722201179800899:1:978.00
-00003102722201179803834:1:730.00
-00003102722201179800899:1:985.00
-00003102722201179801650:1:1000.00
-00003102722201179800899:1:982.00
-00003102722201179803834:1:965.00
-00003102722201179801650:1:1000.00
-00003102722201179815588:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179806711:1:2763.00
-00003102722201179803944:1:1000.00
-00003102722201179807645:1:1100.00
-00003102722201179803520:1:1180.00
-00003102722201179813930:1:1275.00
-00003102722201179807432:1:6323.00
-00003102722201179802669:1:1000.00
-00003102722201179813933:1:1250.00
-00003102722201179803230:1:1000.00
-00003102722201179802003:1:1000.00
-00003102722201179803249:1:4367.00
-00003102722201179816179:1:100.00
-00003102722201179803179:1:1000.00
-00003102722201179806989:1:738.00
-00003102722201179803061:1:3950.00
-00003102722201179808616:1:5749.00
-00003102722201179808448:1:1000.00
-00003102722201179808483:1:1000.00
-00003102722201179803179:1:8560.00
-00003102722201179803179:1:8725.00
-00003102722201179808217:1:985.00
-00003102722201179802010:1:14630.00
-00003102722201179806106:1:1056.00
-00003102722201179803152:1:997.00
-00003102722201179808448:1:298.00
-00003102722201179803042:1:37.00
-00003102722201179806461:1:10003.00
-00003102722201179808990:1:1730.00
-00003102722201179812159:1:1000.00
-00003102722201179808641:1:10.00
-00003102722201179814231:1:1000.00
-00003102722201179806274:1:1100.00
-00003102722201179803771:1:100.00
-00003102722201179808990:1:1020.00
-00003102722201179808641:1:991.00
-00003102722201179801848:1:1275.00
-00003102722201179806274:1:1000.00
-00003102722201179812159:1:9000.00
-00003102722201179818950:1:1125.00
-00003102722201179801848:1:4880.00
-00003102722201179802601:1:100.00
-00003102722201179802301:1:800.00
-00003102722201179812159:1:10000.00
-00003102722201179802601:1:198.00
-00003102722201179812157:1:1000.00
-00003102722201179812159:1:10000.00
-00003102722201179805048:1:960.00
-00003102722201179802601:1:198.00
-00003102722201179812159:1:9000.00
-00003102722201179802662:1:1000.00
-00003102722201179803159:1:1000.00
-00003102722201179804439:1:6358.00
-00003102722201179802168:1:1000.00
-00003102722201179803771:1:1000.00
-00003102722201179812085:1:999.00
-00003102722201179800498:1:200.00
-00003102722201179808569:1:1001.00
-00003102722201179807964:1:12.00
-00003102722201179812085:1:998.00
-00003102722201179803760:1:994.00
-00003102722201179812157:1:9923.00
-00003102722201179811103:1:1327.00
-00003102722201179812085:1:999.00
-00003102722201179801584:1:503.00
-00003102722201179808076:1:2560.00
-00003102722201179807964:1:100.00
-00003102722201179813103:1:1000.00
-00003102722201179812157:1:4623.00
-00003102722201179804781:1:137.00
-00003102722201179808569:1:985.00
-00003102722201179811103:1:1337.00
-00003102722201179812157:1:1813.00
-00003102722201179806712:1:1000.00
-00003102722201179808569:1:985.00
-00003102722201179808569:1:985.00
-00003102722201179804781:1:121.00
-00003102722201179803812:1:5200.00
-00003102722201179803944:1:998.00
-00003102722201179803813:1:1000.00
-00003102722201179806808:1:980.00
-00003102722201179811131:1:9988.00
-00003102722201179805131:1:1006.00
-00003102722201179808266:1:18523.00
-00003102722201179801658:1:49500.00
-00003102722201179806980:1:8993.00
-00003102722201179803761:1:18957.00
-00003102722201179802301:1:1800.00
-00003102722201179809068:1:1005.00
-00003102722201179802301:1:3700.00
-00003102722201179807304:1:6288.00
-00003102722201179807304:1:3813.00
-00003102722201179812123:1:1000.00
-00003102722201179814110:1:9995.00
-00003102722201179814110:1:15005.00
-00003102722201179805155:1:3000.00
-00003102722201179807095:1:5013.00
-00003102722201179809051:1:113.00
-00003102722201179812131:1:23000.00
-00003102722201179807095:1:5111.00
-00003102722201179803683:1:1000.00
-00003102722201179801689:1:1000.00
-00003102722201179812124:1:1000.00
-00003102722201179803152:1:996.00
-00003102722201179808885:1:1050.00
-00003102722201179807482:1:1000.00
-00003102722201179808885:1:8010.00
-00003102722201179809051:1:985.00
-00003102722201179805363:1:1000.00
-00003102722201179803944:1:998.00
-00003102722201179803781:1:1000.00
-00003102722201179801674:1:1000.00
-00003102722201179808569:1:958.00
-00003102722201179803683:1:3628.00
-00003102722201179808569:1:958.00
-00003102722201179812120:1:984.00
-00003102722201179802627:1:4280.00
-00003102722201179808885:1:7780.00
-00003102722201179808248:1:2754.00
-00003102722201179801674:1:49500.00
-00003102722201179807431:1:1000.00
-00003102722201179802627:1:385.00
-00003102722201179806835:1:1000.00
-00003102722201179811307:1:1000.00
-00003102722201179808931:1:1587.00
-00003102722201179803915:1:1000.00
-00003102722201179807963:1:1000.00
-00003102722201179812155:1:49998.00
-00003102722201179803781:1:13500.00
-00003102722201179805132:1:1003.00
-00003102722201179801810:1:1000.00
-00003102722201179814525:1:406.00
-00003102722201179817867:1:1000.00
-00003102722201179805132:1:5002.00
-00003102722201179814480:1:1200.00
-00003102722201179817867:1:13500.00
-00003102722201179812552:1:1100.00
-00003102722201179808931:1:3198.00
-00003102722201179814525:1:279.00
-00003102722201179806222:1:1000.00
-00003102722201179814525:1:337.00
-00003102722201179814525:1:216.00
-00003102722201179801305:1:1000.00
-00003102722201179803295:1:1401.00
-00003102722201179806709:1:2858.50
-00003102722201179808221:1:1100.00
-00003102722201179806709:1:2146.50
-00003102722201179801777:1:23500.00
-00003102722201179806709:1:2235.50
-00003102722201179806709:1:1988.55
-00003102722201179806709:1:1146.00
-00003102722201179806222:1:13500.00
-00003102722201179806709:1:2356.00
-00003102722201179800750:1:3640.00
-00003102722201179806709:1:2352.00
-00003102722201179806709:1:3115.50
-00003102722201179805040:1:7600.00
-00003102722201179808433:1:7763.00
-00003102722201179806709:1:1635.00
-00003102722201179806709:1:2236.50
-00003102722201179806709:1:1665.00
-00003102722201179804289:1:1000.00
-00003102722201179818928:1:1000.00
-00003102722201179803249:1:4312.00
-00003102722201179818928:1:1000.00
-00003102722201179802688:1:3470.00
-00003102722201179803042:1:729.00
-00003102722201179806105:1:1558.00
-00003102722201179806222:1:150.00
-00003102722201179818925:1:1000.00
-00003102722201179808750:1:3895.00
-00003102722201179804719:1:966.00
-00003102722201179803555:1:1000.00
-00003102722201179809105:1:3540.00
-00003102722201179803944:1:1000.00
-00003102722201179804791:1:1009.00
-00003102722201179814482:1:3008.00
-00003102722201179806206:1:1000.00
-00003102722201179803555:1:500.00
-00003102722201179804719:1:665.00
-00003102722201179802345:1:1123.00
-00003102722201179804719:1:2916.00
-00003102722201179811176:1:6152.00
-00003102722201179808569:1:768.00
-00003102722201179808569:1:768.00
-00003102722201179808040:1:820.00
-00003102722201179802301:1:4000.00
-00003102722201179808569:1:768.00
-00003102722201179804719:1:2988.00
-00003102722201179808569:1:768.00
-00003102722201179808040:1:205.00
-00003102722201179808040:1:1000.00
-00003102722201179801182:1:8001.00
-00003102722201179804719:1:1888.00
-00003102722201179801584:1:663.00
-00003102722201179800790:1:2647.00
-00003102722201179801584:1:1100.00
-00003102722201179801186:1:2590.00
-00003102722201179813147:1:4281.00
-00003102722201179808220:1:1104.00
-00003102722201179806874:1:2086.00
-00003102722201179801313:1:5886.00
-00003102722201179811176:1:796.00
-00003102722201179812206:1:1000.00
-00003102722201179803538:1:3697.00
-00003102722201179803538:1:1694.00
-00003102722201179803538:1:1973.00
-00003102722201179803538:1:2678.00
-00003102722201179803538:1:1467.00
-00003102722201179800918:1:1000.00
-00003102722201179804270:1:1000.00
-00003102722201179801142:1:53032.00
-00003102722201179803538:1:2674.00
-00003102722201179803538:1:2475.00
-00003102722201179812206:1:975.00
-00003102722201179804270:1:1000.00
-00003102722201179811400:1:1000.00
-00003102722201179801584:1:102.00
-00003102722201179803781:1:5500.00
-00003102722201179800620:1:1000.00
-00003102722201179801117:1:1000.00
-00003102722201179806360:1:1000.00
-00003102722201179806275:1:1000.00
-00003102722201179804767:1:4337.00
-00003102722201179811833:1:1100.00
-00003102722201179801810:1:4652.00
-00003102722201179806779:1:1000.00
-00003102722201179808861:1:5100.00
-00003102722201179818781:1:1100.00
-00003102722201179808861:1:8700.00
-00003102722201179803602:1:3508.00
-00003102722201179801810:1:3283.00
-00003102722201179801843:1:3200.00
-00003102722201179803760:1:996.00
-00003102722201179800669:1:1000.00
-00003102722201179808236:1:3667.00
-00003102722201179806715:1:1000.00
-00003102722201179808248:1:3911.00
-00003102722201179802337:1:5068.00
-00003102722201179801128:1:1800.00
-00003102722201179804266:1:1000.00
-00003102722201179803152:1:987.00
-00003102722201179803568:1:1129.00
-00003102722201179806779:1:1650.00
-00003102722201179811123:1:1025.00
-00003102722201179807960:1:1000.00
-00003102722201179804270:1:39000.00
-00003102722201179803555:1:750.00
-00003102722201179801584:1:155.00
-00003102722201179811325:1:1000.00
-00003102722201179804270:1:39000.00
-00003102722201179803249:1:4328.00
-00003102722201179801122:1:1200.00
-00003102722201179804871:1:1000.00
-00003102722201179802010:1:4195.00
-00003102722201179802747:1:2839.00
-00003102722201179801584:1:514.00
-00003102722201179807977:1:1500.00
-00003102722201179802010:1:10980.05
-00003102722201179811306:1:12.65
-00003102722201179811306:1:1135.00
-00003102722201179803568:1:3295.00
-00003102722201179803042:1:203.00
-00003102722201179803568:1:2983.00
-00003102722201179800763:1:9665.00
-00003102722201179806776:1:17567.00
-00003102722201179801148:1:700.00
-00003102722201179806779:1:4538.00
-00003102722201179801347:1:258.00
-00003102722201179806362:1:1000.00
-00003102722201179808900:1:7012.00
-00003102722201179803925:1:1000.00
-00003102722201179804705:1:3188.00
-00003102722201179803179:1:9472.50
-00003102722201179803816:1:1000.00
-00003102722201179803905:1:9946.00
-00003102722201179818634:1:1000.00
-00003102722201179811991:1:1000.00
-00003102722201179815550:1:1000.00
-00003102722201179803179:1:9418.50
-00003102722201179808475:1:1000.00
-00003102722201179806716:1:1000.00
-00003102722201179817730:1:1100.00
-00003102722201179808221:1:2105.00
-00003102722201179817730:1:9800.00
-00003102722201179811830:1:1010.00
-00003102722201179805045:1:8800.00
-00003102722203019000101:1:1002.00
-00003102722201179816177:1:100.00
-00003102722201179810999:1:1000.00
-00003102722201179808114:1:1000.00
-00003102722201179803773:1:1000.00
-00003102722201179803466:1:1280.00
-00003102722201179803824:1:4100.00
-00003102722203019000101:1:1200.00
-00003102722201179811225:1:1000.00
-00003102722201179803569:1:4830.00
-00003102722201179812181:1:100.00
-00003102722201179803773:1:9998.00
-00003102722201179808641:1:975.00
-00003102722201179808240:1:5500.00
-00003102722201179808240:1:2100.00
-00003102722201179803824:1:200.00
-00003102722201179808616:1:8300.00
-00003102722201179812120:1:7065.00
-00003102722201179800790:1:8000.00
-00003102722201179806874:1:4653.00
-00003102722201179801843:1:1246.00
-00003102722201179806229:1:1000.00
-00003102722201179808240:1:1100.00
-00003102722201179818964:1:21893.00
-00003102722201179803042:1:76.00
-00003102722201179806408:1:17200.00
-00003102722201179812181:1:100.00
-00003102722201179803944:1:998.00
-00003102722201179806408:1:2100.00
-00003102722201179803932:1:1000.00
-00003102722201179801843:1:1246.00
-00003102722201179809105:1:3740.00
-00003102722201179812181:1:100.00
-00003102722201179803249:1:4235.00
-00003102722201179800790:1:10030.00
-00003102722201179811321:1:10.01
-00003102722201179807997:1:2369.00
-00003102722201179812180:1:1000.00
-00003102722201179812285:1:1000.00
-00003102722201179801632:1:1000.00
-00003102722201179804970:1:3910.00
-00003102722201179807430:1:1012.00
-00003102722201179800790:1:7885.00
-00003102722201179803975:1:1350.00
-00003102722201179811321:1:1000.00
-00003102722201179808244:1:3250.00
-00003102722201179803020:1:2309.00
-00003102722201179808116:1:1000.00
-00003102722201179803935:1:1000.00
-00003102722201179806982:1:8230.00
-00003102722201179818631:1:1000.00
-00003102722201179807430:1:677.00
-00003102722201179806982:1:3660.00
-00003102722201179803155:1:8745.00
-00003102722201179801633:1:1000.00
-00003102722201179813904:1:6200.00
-00003102722201179803590:1:100.00
-00003102722201179812209:1:985.00
-00003102722201179812209:1:998.00
-00003102722201179812209:1:997.00
-00003102722201179803590:1:16053.00
-00003102722201179802312:1:999.00
-00003102722201179803797:1:4582.00
-00003102722201179805424:1:550.00
-00003102722201179812209:1:998.00
-00003102722201179812209:1:996.00
-00003102722201179808357:1:1216.00
-00003102722201179803797:1:4236.00
-00003102722201179806779:1:4285.00
-00003102722201179812209:1:995.00
-00003102722201179806801:1:1512.00
-00003102722201179812209:1:993.00
-00003102722201179803797:1:4836.00
-00003102722201179805131:1:8266.00
-00003102722201179803971:1:1000.00
-00003102722201179806801:1:650.00
-00003102722201179802647:1:1000.00
-00003102722201179808253:1:2781.00
-00003102722201179808253:1:1397.00
-00003102722201179811833:1:9650.00
-00003102722201179816197:1:1100.00
-00003102722201179803299:1:4130.00
-00003102722201179803793:1:5540.00
-00003102722201179803299:1:3860.00
-00003102722201179813699:1:1000.00
-00003102722201179800489:1:100.00
-00003102722201179803972:1:1000.00
-00003102722201179807642:1:1011.00
-00003102722201179805426:1:910.00
-00003102722201179806961:1:1000.00
-00003102722201179803793:1:1050.00
-00003102722201179804196:1:1000.00
-00003102722201179801017:1:15.00
-00003102722201179808556:1:1001.00
-00003102722201179809187:1:1000.00
-00003102722201179811147:1:11347.00
-00003102722201179816180:1:10.00
-00003102722201179806769:1:21700.00
-00003102722201179805426:1:7300.00
-00003102722201179816180:1:1000.00
-00003102722201179803975:1:4865.00
-00003102722201179803249:1:4285.00
-00003102722201179803975:1:4899.00
-00003102722201179804877:1:1000.00
-00003102722201179811400:1:6978.00
-00003102722201179803539:1:1280.00
-00003102722201179810994:1:5980.00
-00003102722201179804260:1:1000.00
-00003102722201179801501:1:1010.00
-00003102722201179812152:1:1000.00
-00003102722201179805155:1:26858.00
-00003102722201179818695:1:10.00
-00003102722201179801380:1:1000.00
-00003102722201179818695:1:100.00
-00003102722201179812120:1:5935.00
-00003102722201179818695:1:9900.00
-00003102722201179803260:1:1429.00
-00003102722201179803827:1:10101.00
-00003102722201179806200:1:7100.00
-00003102722201179804260:1:120.00
-00003102722201179802181:1:1000.00
-00003102722201179803943:1:1000.00
-00003102722201179806205:1:1000.00
-00003102722201179814249:1:1000.00
-00003102722201179801501:1:235.00
-00003102722201179800899:1:28626.00
-00003102722201179814249:1:100.00
-00003102722201179801135:1:1000.00
-00003102722201179800899:1:982.00
-00003102722201179818695:1:15000.00
-00003102722201179811311:1:1000.00
-00003102722201179800899:1:983.00
-00003102722201179818695:1:18000.00
-00003102722201179800899:1:986.00
-00003102722201179818695:1:18000.00
-00003102722201179818695:1:15000.00
-00003102722201179801135:1:15322.70
-00003102722201179805010:1:9800.00
-00003102722201179807095:1:2241.00
-00003102722201179807095:1:4731.00
-00003102722201179805155:1:4620.00
-00003102722201179803701:1:975.00
-00003102722201179812152:1:5800.00
-00003102722201179805155:1:12500.00
-00003102722201179805165:1:1100.00
-00003102722201179803261:1:9420.00
-00003102722201179808883:1:840.00
-00003102722201179805155:1:8005.00
-00003102722201179808054:1:1000.00
-00003102722201179803179:1:7685.00
-00003102722201179803179:1:9472.50
-00003102722201179803179:1:1000.00
-00003102722201179803019:1:1000.00
-00003102722201179803757:1:3973.00
-00003102722201179818612:1:10.00
-00003102722201179803155:1:5149.00
-00003102722201179801712:1:10.00
-00003102722201179812152:1:6400.00
-00003102722201179801394:1:11250.00
-00003102722201179801380:1:199.00
-00003102722201179803154:1:10008.69
-00003102722201179807640:1:4572.00
-00003102722201179811312:1:1000.00
-00003102722201179818612:1:1000.00
-00003102722201179806779:1:1175.00
-00003102722201179806801:1:1455.00
-00003102722201179805424:1:2080.00
-00003102722201179806801:1:598.00
-00003102722201179801712:1:1020.00
-00003102722201179805155:1:9200.00
-00003102722201179801380:1:957.00
-00003102722201179801320:1:15.00
-00003102722201179808474:1:1005.00
-00003102722201179812071:1:1000.00
-00003102722201179808427:1:3445.00
-00003102722201179808427:1:2913.00
-00003102722201179808750:1:1289.00
-00003102722201179813779:1:103.00
-00003102722201179805881:1:1000.00
-00003102722201179801320:1:2750.00
-00003102722201179801320:1:650.00
-00003102722201179808113:1:1000.00
-00003102722201179801320:1:750.00
-00003102722201179808427:1:2368.00
-00003102722201179812009:1:15.00
-00003102722201179808920:1:1000.00
-00003102722201179807436:1:1047.00
-00003102722201179812107:1:2000.00
-00003102722201179812071:1:999.00
-00003102722201179812009:1:500.00
-00003102722201179818612:1:19800.00
-00003102722201179808642:1:10.00
-00003102722201179808879:1:1000.00
-00003102722201179806754:1:999.99
-00003102722201179803770:1:1010.00
-00003102722201179808867:1:1188.00
-00003102722201179808642:1:999.99
-00003102722201179812071:1:998.00
-00003102722201179801650:1:780.00
-00003102722201179807252:1:10.00
-00003102722201179808642:1:999.00
-00003102722201179803770:1:500.00
-00003102722201179808642:1:999.99
-00003102722201179814205:1:8688.00
-00003102722201179808642:1:999.99
-00003102722201179808642:1:999.99
-00003102722201179808885:1:8360.00
-00003102722201179808867:1:3998.00
-00003102722201179806105:1:1232.00
-00003102722201179805434:1:1000.00
-00003102722201179801650:1:720.00
-00003102722201179805427:1:1880.00
-00003102722201179803793:1:1590.00
-00003102722201179805163:1:1100.00
-00003102722201179803793:1:2740.00
-00003102722201179808942:1:1026.50
-00003102722201179801127:1:1000.00
-00003102722201179805163:1:800.00
-00003102722201179811313:1:1368.00
-00003102722201179803943:1:997.00
-00003102722201179803701:1:892.00
-00003102722201179807995:1:1100.00
-00003102722201179803701:1:870.00
-00003102722201179800493:1:200.00
-00003102722201179803441:1:6896.50
-00003102722201179806223:1:1010.00
-00003102722201179802757:1:10.00
-00003102722201179806223:1:100.00
-00003102722201179800494:1:200.00
-00003102722201179802301:1:900.00
-00003102722201179807252:1:1008.00
-00003102722201179800790:1:17800.00
-00003102722201179800486:1:200.00
-00003102722201179808237:1:1010.00
-00003102722201179817787:1:1000.00
-00003102722201179806775:1:2650.00
-00003102722201179803552:1:7985.00
-00003102722201179809134:1:18707.00
-00003102722201179806224:1:1010.00
-00003102722201179808569:1:915.00
-00003102722201179808569:1:915.00
-00003102722201179818957:1:1006.00
-00003102722201179802743:1:1483.00
-00003102722201179808569:1:915.00
-00003102722201179802623:1:2999.00
-00003102722201179806775:1:1850.00
-00003102722201179801166:1:19.80
-00003102722201179800763:1:4836.00
-00003102722201179818957:1:10.00
-00003102722201179807918:1:100.00
-00003102722201179809144:1:1002.00
-00003102722201179808028:1:2650.00
-00003102722201179800486:1:3681.00
-00003102722201179806775:1:3280.00
-00003102722201179805163:1:10988.00
-00003102722201179806775:1:1050.00
-00003102722201179806762:1:25.00
-00003102722201179804791:1:809.00
-00003102722201179806360:1:4000.00
-00003102722201179801166:1:1980.00
-00003102722201179808934:1:900.00
-00003102722201179808934:1:938.00
-00003102722201179808934:1:960.00
-00003102722201179804827:1:1000.00
-00003102722201179806808:1:960.00
-00003102722201179803552:1:2195.00
-00003102722201179802683:1:1000.00
-00003102722201179803042:1:2033.00
-00003102722201179806360:1:13651.00
-00003102722201179806823:1:1600.00
-00003102722201179806360:1:348.00
-00003102722201179806823:1:1600.00
-00003102722201179805434:1:671.00
-00003102722201179806360:1:10000.00
-00003102722201179806823:1:1600.00
-00003102722201179806823:1:1400.00
-00003102722201179806360:1:13780.00
-00003102722201179808456:1:10.00
-00003102722201179801848:1:4690.00
-00003102722201179806823:1:1600.00
-00003102722201179806360:1:13698.00
-00003102722201179806360:1:7521.00
-00003102722201179803260:1:1382.00
-00003102722201179806360:1:10000.00
-00003102722201179808444:1:1940.00
-00003102722201179803592:1:1000.00
-00003102722201179806969:1:2530.00
-00003102722201179807984:1:1084.00
-00003102722201179803592:1:1000.00
-00003102722201179806360:1:12549.00
-00003102722201179803592:1:1000.00
-00003102722201179806360:1:10451.00
-00003102722201179808440:1:8665.00
-00003102722201179817786:1:1000.00
-00003102722201179801320:1:1749.00
-00003102722201179801320:1:629.00
-00003102722201179801320:1:1129.00
-00003102722201179806360:1:11420.00
-00003102722201179807430:1:380.00
-00003102722201179808723:1:1000.00
-00003102722201179807430:1:650.00
-00003102722201179802757:1:910.00
-00003102722201179807430:1:730.00
-00003102722201179802309:1:500.02
-00003102722201179806360:1:11352.00
-00003102722201179806988:1:9765.00
-00003102722201179806360:1:11284.00
-00003102722201179808266:1:473.00
-00003102722201179806360:1:10944.00
-00003102722201179808414:1:2153.00
-00003102722201179801772:1:1000.00
-00003102722201179803568:1:536.00
-00003102722201179812009:1:10000.00
-00003102722201179804970:1:4750.00
-00003102722201179803568:1:683.00
-00003102722201179801848:1:1602.00
-00003102722201179801848:1:2190.00
-00003102722201179812009:1:42015.31
-00003102722201179803568:1:256.00
-00003102722201179802309:1:11000.00
-00003102722201179804970:1:5840.00
-00003102722201179808770:1:20.00
-00003102722201179801848:1:325.00
-00003102722201179804970:1:3940.00
-00003102722201179801848:1:1580.00
-00003102722201179801771:1:1000.00
-00003102722201179806961:1:5100.00
-00003102722201179801848:1:8725.00
-00003102722201179804970:1:1590.00
-00003102722201179807642:1:3039.00
-00003102722201179817784:1:1000.00
-00003102722201179805433:1:1000.00
-00003102722201179807430:1:877.00
-00003102722201179802166:1:1000.00
-00003102722201179802647:1:13000.00
-00003102722201179802166:1:980.00
-00003102722201179804970:1:6940.00
-00003102722201179814524:1:1860.00
-00003102722201179806711:1:5837.00
-00003102722201179814524:1:1950.00
-00003102722201179801711:1:1000.00
-00003102722201179808934:1:950.00
-00003102722201179801584:1:1006.00
-00003102722201179808934:1:890.00
-00003102722201179808934:1:910.00
-00003102722201179814223:1:1000.00
-00003102722201179808040:1:7265.00
-00003102722201179808040:1:8633.00
-00003102722201179801591:1:1000.00
-00003102722201179818920:1:1000.00
-00003102722201179806210:1:5800.00
-00003102722201179808247:1:2574.00
-00003102722201179808247:1:3194.00
-00003102722201179803151:1:893.00
-00003102722201179801587:1:1765.00
-00003102722201179801587:1:2638.00
-00003102722201179801843:1:754.00
-00003102722201179801305:1:6850.00
-00003102722201179814155:1:1000.00
-00003102722201179808934:1:830.00
-00003102722201179801810:1:63.00
-00003102722201179808934:1:900.00
-00003102722201179812131:1:800.00
-00003102722201179808934:1:970.00
-00003102722201179801843:1:1754.00
-00003102722201179806238:1:1550.00
-00003102722201179803793:1:2680.00
-00003102722201179803793:1:4930.00
-00003102722201179803793:1:3180.00
-00003102722201179809129:1:10068.00
-00003102722201179801848:1:4172.00
-00003102722201179806874:1:2520.00
-00003102722201179808299:1:7000.00
-00003102722201179803179:1:2088.50
-00003102722201179801591:1:5800.00
-00003102722201179801591:1:100.00
-00003102722201179803685:1:2361.00
-00003102722201179801584:1:108.00
-00003102722201179806238:1:12.00
-00003102722201179800790:1:7200.00
-00003102722201179802651:1:588.00
-00003102722201179803701:1:795.00
-00003102722201179802651:1:985.00
-00003102722201179803048:1:1000.00
-00003102722201179803701:1:915.00
-00003102722201179801591:1:1310.00
-00003102722201179808414:1:1213.00
-00003102722201179807095:1:1725.00
-00003102722201179807095:1:4153.00
-00003102722201179801848:1:4017.00
-00003102722201179802651:1:3588.00
-00003102722201179800790:1:2482.00
-00003102722201179802651:1:985.00
-00003102722201179804263:1:1000.00
-00003102722201179812000:1:11251.00
-00003102722201179812000:1:8224.00
-00003102722201179801501:1:400.00
-00003102722201179812000:1:21934.00
-00003102722201179801501:1:836.00
-00003102722201179812000:1:12863.00
-00003102722201179801501:1:2350.00
-00003102722201179801501:1:2550.00
-00003102722201179808862:1:7235.00
-00003102722201179808862:1:13650.00
-00003102722201179803760:1:948.00
-00003102722201179812000:1:982.00
-00003102722201179812000:1:992.00
-00003102722201179808862:1:2050.00
-00003102722201179803757:1:4270.00
-00003102722201179806279:1:1000.00
-00003102722201179806759:1:1000.00
-00003102722201179808952:1:1369.00
-00003102722201179805159:1:2000.00
-00003102722201179809082:1:3540.00
-00003102722201179808476:1:107.00
-00003102722201179802646:1:2000.00
-00003102722201179801501:1:335.00
-00003102722201179803286:1:9998.50
-00003102722201179808411:1:1000.00
-00003102722201179805438:1:500.00
-00003102722201179804286:1:1375.00
-00003102722201179804286:1:1750.00
-00003102722201179808476:1:239.00
-00003102722201179802708:1:10009.00
-00003102722201179804286:1:2500.00
-00003102722201179813752:1:3685.00
-00003102722201179809057:1:1000.02
-00003102722201179804286:1:4000.00
-00003102722201179808299:1:1000.00
-00003102722201179802795:1:1010.00
-00003102722201179808045:1:13259.80
-00003102722201179808045:1:8956.40
-00003102722201179808299:1:1000.00
-00003102722201179801380:1:789.00
-00003102722201179808723:1:3280.00
-00003102722201179818950:1:768.00
-00003102722201179807682:1:1000.00
-00003102722201179807682:1:874.00
-00003102722201179807682:1:933.00
-00003102722201179807682:1:1000.00
-00003102722201179806326:1:3417.00
-00003102722201179803151:1:837.00
-00003102722201179808028:1:12650.00
-00003102722201179807994:1:1057.00
-00003102722201179813876:1:210.00
-00003102722201179808028:1:3658.00
-00003102722201179813919:1:1000.00
-00003102722201179813919:1:46988.00
-00003102722201179808299:1:27000.00
-00003102722201179808299:1:27000.00
-00003102722201179808299:1:27000.00
-00003102722201179808028:1:10850.00
-00003102722201179808299:1:24000.00
-00003102722201179808299:1:4500.00
-00003102722201179811307:1:900.00
-00003102722201179808028:1:13650.00
-00003102722201179803151:1:608.00
-00003102722201179803834:1:957.00
-00003102722201179803834:1:728.00
-00003102722201179809122:1:1217.00
-00003102722201179809122:1:2367.00
-00003102722201179805438:1:1000.00
-00003102722201179811177:1:1000.00
-00003102722201179808414:1:1315.00
-00003102722201179806312:1:1000.00
-00003102722201179801792:1:300.00
-00003102722201179806312:1:1000.00
-00003102722201179805163:1:21986.90
-00003102722201179801792:1:20000.00
-00003102722201179801792:1:20000.00
-00003102722201179806312:1:1000.00
-00003102722201179801584:1:5850.00
-00003102722201179801584:1:1655.00
-00003102722201179806312:1:1000.00
-00003102722201179801792:1:20000.00
-00003102722201179803019:1:2010.00
-00003102722201179806312:1:1000.00
-00003102722201179806312:1:1000.00
-00003102722201179812751:1:1000.00
-00003102722201179813763:1:1220.00
-00003102722201179812751:1:7510.00
-00003102722201179808770:1:9999.99
-00003102722201179808826:1:3298.00
-00003102722201179806261:1:86.00
-00003102722201179807283:1:99.99
-00003102722201179807283:1:99.99
-00003102722201179818956:1:1000.00
-00003102722201179809088:1:1200.00
-00003102722201179806710:1:5680.00
-00003102722201179803151:1:863.00
-00003102722201179801794:1:4152.00
-00003102722201179806275:1:205.00
-00003102722201179803151:1:943.00
-00003102722201179818701:1:2950.00
-00003102722201179808641:1:999.60
-00003102722201179805931:1:10000.01
-00003102722201179817731:1:1100.00
-00003102722201179806982:1:8523.00
-00003102722201179817731:1:7900.00
-00003102722201179808641:1:998.80
-00003102722201179813184:1:3120.00
-00003102722201179817731:1:5000.00
-00003102722201179817731:1:11000.00
-00003102722201179813933:1:1996.00
-00003102722201179803177:1:1005.00
-00003102722201179802193:1:972.00
-00003102722201179802193:1:958.00
-00003102722201179813778:1:1000.00
-00003102722201179809143:1:960.00
-00003102722201179804856:1:1100.00
-00003102722201179811123:1:8200.00
-00003102722201179803152:1:995.00
-00003102722201179806241:1:1000.00
-00003102722201179806241:1:999.00
-00003102722201179803249:1:43.21
-00003102722201179813778:1:9012.00
-00003102722201179801651:1:5000.00
-00003102722201179803249:1:4210.00
-00003102722201179808444:1:4509.00
-00003102722201179814130:1:1000.00
-00003102722201179808444:1:8822.00
-00003102722201179808444:1:2288.00
-00003102722201179803761:1:812.00
-00003102722201179814241:1:1000.00
-00003102722201179808476:1:3973.00
-00003102722201179808646:1:1000.00
-00003102722201179809082:1:3620.00
-00003102722201179806711:1:5247.00
-00003102722201179818964:1:832.00
-00003102722201179803688:1:99000.00
-00003102722201179803761:1:917.00
-00003102722201179818964:1:939.00
-00003102722201179803761:1:927.00
-00003102722201179801668:1:980.00
-00003102722201179801380:1:753.00
-00003102722201179809083:1:1382.00
-00003102722201179808404:1:1000.00
-00003102722201179802651:1:7858.00
-00003102722201179808401:1:975.00
-00003102722201179801651:1:5000.00
-00003102722201179801651:1:7320.00
-00003102722201179818964:1:957.00
-00003102722201179801650:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179801668:1:3580.00
-00003102722201179801651:1:5500.00
-00003102722201179808750:1:3580.00
-00003102722201179806981:1:1532.00
-00003102722201179812150:1:5537.00
-00003102722201179808916:1:20.00
-00003102722201179803568:1:2280.00
-00003102722201179807095:1:3257.00
-00003102722201179818964:1:18057.00
-00003102722201179807095:1:3513.00
-00003102722201179818681:1:1000.00
-00003102722201179806728:1:850.00
-00003102722201179803761:1:153.00
-00003102722201179802037:1:1000.00
-00003102722201179806728:1:250.00
-00003102722201179818704:1:1000.00
-00003102722201179803834:1:967.00
-00003102722201179800448:1:200.00
-00003102722201179803834:1:310.00
-00003102722201179803901:1:6238.00
-00003102722201179803834:1:957.00
-00003102722201179818964:1:11835.00
-00003102722201179814143:1:1000.00
-00003102722201179803154:1:5680.00
-00003102722201179805374:1:5800.00
-00003102722201179814242:1:1000.00
-00003102722201179810996:1:1000.00
-00003102722201179802622:1:1500.00
-00003102722201179809082:1:3820.00
-00003102722201179802730:1:1025.00
-00003102722201179807918:1:29967.30
-00003102722201179811400:1:4798.00
-00003102722201179812085:1:2238.00
-00003102722201179802669:1:5000.00
-00003102722201179818765:1:1000.00
-00003102722201179814143:1:3200.00
-00003102722201179803926:1:1000.00
-00003102722201179803568:1:1896.00
-00003102722201179815550:1:11028.00
-00003102722201179801698:1:2630.00
-00003102722201179815550:1:6921.00
-00003102722201179813462:1:4999.99
-00003102722201179801698:1:3600.00
-00003102722201179813462:1:9999.99
-00003102722201179805438:1:1000.00
-00003102722201179813462:1:4999.99
-00003102722201179802669:1:720.00
-00003102722201179806774:1:1000.00
-00003102722201179812131:1:21000.00
-00003102722201179808356:1:1010.00
-00003102722203019003945:1:10.00
-00003102722201179805426:1:7230.00
-00003102722203019003945:1:2000.00
-00003102722201179808933:1:100.00
-00003102722201179803042:1:392.00
-00003102722201179813732:1:1000.00
-00003102722201179803299:1:8170.00
-00003102722201179803299:1:8170.00
-00003102722201179803816:1:31000.00
-00003102722201179803299:1:3350.00
-00003102722201179808933:1:1000.00
-00003102722201179803299:1:3350.00
-00003102722201179806774:1:30160.00
-00003102722201179803299:1:4180.00
-00003102722201179803299:1:4180.00
-00003102722201179808933:1:1000.00
-00003102722201179803299:1:4180.00
-00003102722201179808933:1:1000.00
-00003102722201179806989:1:927.00
-00003102722201179808499:1:1689.00
-00003102722201179803152:1:996.00
-00003102722201179808933:1:1000.00
-00003102722201179803782:1:1000.00
-00003102722201179808933:1:700.00
-00003102722201179813732:1:5899.00
-00003102722201179803782:1:4387.00
-00003102722201179813732:1:3289.00
-00003102722201179808587:1:1000.00
-00003102722201179808933:1:100.00
-00003102722201179808933:1:100.00
-00003102722201179803778:1:1002.00
-00003102722201179801668:1:6870.00
-00003102722201179805424:1:1680.00
-00003102722201179803177:1:4805.00
-00003102722201179803920:1:1000.00
-00003102722201179805168:1:89.00
-00003102722201179803816:1:25500.00
-00003102722201179813164:1:989.00
-00003102722201179802739:1:6995.05
-00003102722201179803520:1:8600.00
-00003102722201179808933:1:100.00
-00003102722201179806772:1:1000.00
-00003102722201179808933:1:200.00
-00003102722201179803177:1:8886.00
-00003102722201179814225:1:1000.00
-00003102722201179808933:1:700.00
-00003102722201179806772:1:42300.00
-00003102722201179806717:1:1239.00
-00003102722201179806808:1:920.00
-00003102722201179812000:1:14257.00
-00003102722201179802037:1:9360.00
-00003102722201179812000:1:12458.00
-00003102722201179808110:1:1000.00
-00003102722201179806772:1:45000.00
-00003102722201179814243:1:1000.00
-00003102722201179808933:1:500.00
-00003102722201179813252:1:11225.00
-00003102722201179814513:1:1275.00
-00003102722201179807973:1:5699.00
-00003102722201179807095:1:5672.00
-00003102722201179808137:1:1000.00
-00003102722201179813164:1:999.00
-00003102722201179806314:1:3900.00
-00003102722201179803183:1:1000.00
-00003102722201179818610:1:1000.00
-00003102722201179803183:1:4988.00
-00003102722201179801810:1:2863.00
-00003102722201179801154:1:1000.00
-00003102722201179801825:1:1000.00
-00003102722201179801502:1:1004.00
-00003102722201179803760:1:995.00
-00003102722201179803568:1:2138.00
-00003102722201179803701:1:790.00
-00003102722201179806105:1:2468.00
-00003102722201179803152:1:997.00
-00003102722201179803842:1:998.00
-00003102722201179803701:1:810.00
-00003102722201179803497:1:2300.00
-00003102722201179803249:1:3908.00
-00003102722201179803222:1:58.00
-00003102722201179804248:1:1000.00
-00003102722201179812155:1:40110.00
-00003102722201179804735:1:1050.00
-00003102722201179806217:1:10000.00
-00003102722201179802331:1:5699.00
-00003102722201179808247:1:1975.00
-00003102722201179814513:1:946.00
-00003102722201179812150:1:5516.00
-00003102722201179814513:1:1438.00
-00003102722201179814513:1:2196.00
-00003102722201179814513:1:2265.00
-00003102722201179806314:1:10000.00
-00003102722201179806314:1:5000.00
-00003102722201179803221:1:11.50
-00003102722201179807682:1:933.00
-00003102722201179814211:1:1860.00
-00003102722201179808137:1:4000.00
-00003102722201179807682:1:933.00
-00003102722201179807682:1:933.00
-00003102722201179803761:1:11573.00
-00003102722201179807682:1:933.00
-00003102722201179803221:1:696.60
-00003102722201179807430:1:552.00
-00003102722201179801681:1:1000.00
-00003102722201179807410:1:12350.00
-00003102722201179804856:1:1710.00
-00003102722201179804856:1:1130.00
-00003102722201179811221:1:1000.00
-00003102722201179803221:1:800.00
-00003102722201179803683:1:3650.00
-00003102722201179806765:1:125.00
-00003102722201179803021:1:1000.00
-00003102722201179803405:1:2347.00
-00003102722201179806932:1:39877.00
-00003102722201179802627:1:6748.00
-00003102722201179810990:1:1000.00
-00003102722201179802627:1:8260.00
-00003102722201179803405:1:48.00
-00003102722201179802627:1:267.00
-00003102722201179810990:1:1000.00
-00003102722201179806759:1:8013.35
-00003102722201179805162:1:1100.00
-00003102722201179808137:1:1000.00
-00003102722201179809024:1:59.00
-00003102722201179809024:1:6585.85
-00003102722201179803821:1:1000.00
-00003102722201179806260:1:1000.00
-00003102722201179803797:1:4734.00
-00003102722201179803797:1:4218.00
-00003102722201179802716:1:6489.00
-00003102722201179803683:1:2670.00
-00003102722201179803797:1:3862.00
-00003102722201179808137:1:1000.00
-00003102722201179811307:1:2100.00
-00003102722201179808137:1:4800.00
-00003102722201179809105:1:3370.00
-00003102722201179818610:1:960.00
-00003102722201179818610:1:2000.00
-00003102722201179818700:1:1000.00
-00003102722201179804838:1:150.00
-00003102722201179818700:1:1000.00
-00003102722201179806776:1:237.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179801843:1:298.00
-00003102722201179818700:1:1000.00
-00003102722201179801843:1:1352.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179814484:1:2000.00
-00003102722201179804838:1:5000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179803151:1:672.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179804788:1:9173.00
-00003102722201179818606:1:1000.00
-00003102722201179811206:1:1000.00
-00003102722201179808807:1:1000.00
-00003102722201179801139:1:1000.00
-00003102722201179803757:1:3515.00
-00003102722201179803767:1:1000.00
-00003102722201179804788:1:9417.00
-00003102722201179818712:1:1000.00
-00003102722201179803757:1:300.00
-00003102722201179803976:1:1000.00
-00003102722201179801690:1:4785.00
-00003102722201179808946:1:10.00
-00003102722201179801690:1:3875.00
-00003102722201179806800:1:3820.00
-00003102722201179808807:1:45000.00
-00003102722201179800494:1:799.00
-00003102722201179804267:1:1000.00
-00003102722201179808750:1:2985.00
-00003102722201179800494:1:859.00
-00003102722201179816159:1:1100.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179800494:1:884.00
-00003102722201179803724:1:15109.00
-00003102722201179800494:1:951.00
-00003102722201179803839:1:5600.00
-00003102722201179800494:1:944.00
-00003102722201179808876:1:3983.00
-00003102722201179800494:1:899.00
-00003102722201179815791:1:1000.00
-00003102722201179801502:1:3046.00
-00003102722201179804727:1:1060.00
-00003102722201179801502:1:3115.00
-00003102722201179805375:1:1005.00
-00003102722201179803797:1:8123.00
-00003102722201179803569:1:6230.00
-00003102722201179803724:1:9810.00
-00003102722201179801664:1:7932.00
-00003102722201179806238:1:990.00
-00003102722201179803821:1:19850.00
-00003102722201179802636:1:5999.00
-00003102722201179801502:1:536.00
-00003102722201179803724:1:2359.00
-00003102722201179818700:1:1000.00
-00003102722201179801664:1:7856.00
-00003102722201179805153:1:1280.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179801502:1:235.00
-00003102722201179818700:1:1000.00
-00003102722201179806983:1:641.00
-00003102722201179801502:1:216.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179814484:1:4500.00
-00003102722201179808876:1:6837.00
-00003102722201179814484:1:6500.00
-00003102722201179808040:1:6300.00
-00003102722201179802799:1:7600.00
-00003102722201179818700:1:1000.00
-00003102722201179814484:1:5100.00
-00003102722201179818700:1:1000.00
-00003102722201179806238:1:996.00
-00003102722201179818700:1:1000.00
-00003102722201179808040:1:14300.00
-00003102722201179801126:1:1000.00
-00003102722201179810994:1:8920.00
-00003102722201179802331:1:3999.00
-00003102722201179818700:1:1000.00
-00003102722201179801502:1:1473.00
-00003102722201179808040:1:1160.00
-00003102722201179803724:1:859.00
-00003102722201179814484:1:7100.00
-00003102722201179806240:1:1000.00
-00003102722201179802193:1:994.00
-00003102722201179808476:1:4536.00
-00003102722201179808040:1:200.00
-00003102722201179814484:1:7300.00
-00003102722201179802193:1:968.00
-00003102722201179803568:1:1846.00
-00003102722201179803760:1:970.00
-00003102722201179818700:1:1000.00
-00003102722201179806704:1:19999.00
-00003102722201179814484:1:6100.00
-00003102722201179803498:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179808448:1:3025.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179800790:1:2843.00
-00003102722201179804727:1:386.00
-00003102722201179808448:1:826.00
-00003102722201179818700:1:1000.00
-00003102722201179804792:1:1780.00
-00003102722201179800790:1:2837.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179800899:1:896.00
-00003102722201179814484:1:1900.00
-00003102722201179818700:1:1000.00
-00003102722201179800899:1:979.00
-00003102722201179818700:1:1000.00
-00003102722201179814484:1:6800.00
-00003102722201179800899:1:983.00
-00003102722201179803049:1:6100.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179800899:1:896.00
-00003102722201179802026:1:1628.00
-00003102722201179800899:1:962.00
-00003102722201179818700:1:1000.00
-00003102722201179800899:1:958.00
-00003102722203019004099:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179807682:1:942.00
-00003102722201179800899:1:956.00
-00003102722201179814484:1:7300.00
-00003102722201179818700:1:1000.00
-00003102722201179803185:1:1000.00
-00003102722201179807682:1:942.00
-00003102722201179818700:1:1000.00
-00003102722201179807682:1:942.00
-00003102722201179803975:1:6388.00
-00003102722201179807682:1:942.00
-00003102722201179818700:1:1000.00
-00003102722201179806961:1:8231.00
-00003102722201179818700:1:1000.00
-00003102722201179813182:1:1550.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179814484:1:7600.00
-00003102722201179803920:1:7000.00
-00003102722201179803701:1:890.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179803701:1:800.00
-00003102722201179814484:1:8900.00
-00003102722201179811220:1:100.00
-00003102722201179805375:1:1497.00
-00003102722201179817444:1:1000.00
-00003102722201179803920:1:9000.00
-00003102722201179803498:1:865.00
-00003102722201179803701:1:90.00
-00003102722201179808642:1:999.99
-00003102722201179803701:1:90.00
-00003102722201179803155:1:15486.00
-00003102722201179805375:1:1498.00
-00003102722201179814237:1:1000.00
-00003102722201179808642:1:999.99
-00003102722201179803701:1:95.00
-00003102722201179801125:1:375.00
-00003102722201179803701:1:45.00
-00003102722201179805375:1:1495.00
-00003102722201179808642:1:999.99
-00003102722201179803186:1:1000.00
-00003102722201179803701:1:280.00
-00003102722201179808642:1:999.99
-00003102722201179805375:1:1497.00
-00003102722201179802315:1:4535.00
-00003102722201179801756:1:6709.00
-00003102722201179805375:1:1498.00
-00003102722201179803016:1:1022.00
-00003102722201179808221:1:2157.00
-00003102722201179812068:1:998.00
-00003102722201179812068:1:998.00
-00003102722201179805375:1:1397.00
-00003102722201179812068:1:998.00
-00003102722201179805176:1:1200.00
-00003102722201179811220:1:1000.00
-00003102722201179812068:1:997.00
-00003102722201179808044:1:999.00
-00003102722201179804781:1:168.00
-00003102722201179808044:1:999.00
-00003102722201179804430:1:1000.00
-00003102722201179805375:1:1398.00
-00003102722201179808044:1:999.00
-00003102722201179808044:1:999.00
-00003102722201179803498:1:2963.00
-00003102722201179805882:1:1000.00
-00003102722201179803916:1:1000.00
-00003102722201179804781:1:128.00
-00003102722201179806808:1:845.00
-00003102722201179800877:1:230.00
-00003102722201179803793:1:3800.00
-00003102722201179804781:1:218.00
-00003102722201179804871:1:986.00
-00003102722201179802315:1:4953.00
-00003102722201179804781:1:213.00
-00003102722201179813909:1:2125.00
-00003102722201179804781:1:3170.00
-00003102722201179800918:1:29500.00
-00003102722201179804781:1:217.00
-00003102722201179807488:1:1000.00
-00003102722201179801112:1:1471.00
-00003102722201179808980:1:3280.00
-00003102722201179804781:1:4260.00
-00003102722201179803498:1:3614.00
-00003102722201179800441:1:100.00
-00003102722201179815559:1:1000.00
-00003102722201179802001:1:1000.00
-00003102722201179809105:1:3470.00
-00003102722201179812150:1:5540.00
-00003102722201179809132:1:1050.00
-00003102722201179818600:1:1000.00
-00003102722201179803856:1:1000.00
-00003102722201179811220:1:14288.80
-00003102722201179803498:1:3023.00
-00003102722201179818600:1:1501.00
-00003102722201179811109:1:333.33
-00003102722201179808558:1:1020.00
-00003102722201179817708:1:1000.00
-00003102722201179802037:1:10640.00
-00003102722201179804448:1:1000.00
-00003102722201179803905:1:9835.00
-00003102722201179806969:1:2620.00
-00003102722201179814202:1:1899.53
-00003102722201179818612:1:6900.00
-00003102722201179818600:1:2501.00
-00003102722201179803975:1:7545.00
-00003102722201179818612:1:19500.00
-00003102722201179803761:1:19857.00
-00003102722201179812209:1:998.00
-00003102722201179803498:1:3011.00
-00003102722201179803042:1:673.00
-00003102722201179814227:1:1000.00
-00003102722201179801792:1:19000.00
-00003102722201179803975:1:5842.00
-00003102722201179801792:1:19000.00
-00003102722201179812464:1:110.00
-00003102722201179801792:1:19000.00
-00003102722201179813793:1:1000.00
-00003102722201179803498:1:2062.00
-00003102722201179801507:1:1007.00
-00003102722201179812464:1:110.00
-00003102722201179814225:1:34000.00
-00003102722201179812209:1:997.00
-00003102722201179813909:1:10087.00
-00003102722201179808260:1:10470.00
-00003102722201179812209:1:996.00
-00003102722201179812464:1:785.00
-00003102722201179803498:1:2235.00
-00003102722201179804791:1:1417.00
-00003102722201179804282:1:19800.00
-00003102722201179803793:1:3450.00
-00003102722201179803793:1:6740.00
-00003102722201179803601:1:1980.00
-00003102722203019003947:1:100.00
-00003102722203019003947:1:1263.00
-00003102722201179809082:1:3730.00
-00003102722201179806171:1:1000.00
-00003102722201179803042:1:128.00
-00003102722201179806801:1:1511.00
-00003102722201179811300:1:1010.00
-00003102722201179806801:1:595.00
-00003102722201179806874:1:867.00
-00003102722201179806874:1:943.00
-00003102722201179808400:1:12035.00
-00003102722201179806874:1:687.00
-00003102722201179803975:1:13150.00
-00003102722201179806240:1:1000.00
-00003102722201179806874:1:867.00
-00003102722201179806874:1:413.00
-00003102722201179812206:1:940.00
-00003102722201179803151:1:998.00
-00003102722201179807972:1:1020.00
-00003102722201179803840:1:1000.00
-00003102722201179807430:1:688.00
-00003102722201179812150:1:9603.00
-00003102722201179807430:1:755.00
-00003102722201179806715:1:2331.00
-00003102722201179817443:1:1000.00
-00003102722201179806276:1:1000.00
-00003102722201179805438:1:560.00
-00003102722201179808393:1:1010.00
-00003102722201179806700:1:2998.00
-00003102722201179805932:1:1035.00
-00003102722201179815568:1:1000.00
-00003102722201179808641:1:999.90
-00003102722201179803151:1:966.00
-00003102722201179808074:1:18805.00
-00003102722201179807450:1:4865.00
-00003102722201179813909:1:20104.00
-00003102722201179805932:1:2530.00
-00003102722201179818971:1:1000.00
-00003102722201179807311:1:1020.00
-00003102722201179804200:1:1000.00
-00003102722201179818971:1:1000.00
-00003102722201179803789:1:1000.00
-00003102722201179803249:1:4118.00
-00003102722201179810999:1:1002.00
-00003102722201179814239:1:6000.00
-00003102722201179815792:1:1000.00
-00003102722201179814129:1:1000.00
-00003102722201179806801:1:1495.00
-00003102722201179803902:1:1000.00
-00003102722201179804767:1:8373.00
-00003102722201179818673:1:1000.00
-00003102722201179806801:1:885.00
-00003102722201179815588:1:16590.00
-00003102722201179807976:1:1280.00
-00003102722201179803975:1:3900.00
-00003102722201179814239:1:1000.00
-00003102722201179811111:1:2950.00
-00003102722201179803789:1:950.00
-00003102722201179812150:1:8427.00
-00003102722201179803922:1:1000.00
-00003102722201179810950:1:1000.00
-00003102722201179814239:1:3000.00
-00003102722201179817747:1:1000.00
-00003102722201179807434:1:1000.00
-00003102722201179802662:1:3599.00
-00003102722201179806983:1:635.00
-00003102722201179818962:1:1000.00
-00003102722201179818962:1:970.00
-00003102722201179803902:1:18000.00
-00003102722201179801678:1:1000.00
-00003102722201179801678:1:10000.00
-00003102722201179818682:1:1000.00
-00003102722201179812555:1:100.00
-00003102722201179807963:1:7248.00
-00003102722201179812291:1:1000.00
-00003102722201179811147:1:6795.00
-00003102722201179808405:1:1000.00
-00003102722201179804311:1:1230.00
-00003102722201179811108:1:10.00
-00003102722201179800763:1:2175.00
-00003102722201179818670:1:1000.00
-00003102722201179808965:1:8369.78
-00003102722201179811108:1:1007.00
-00003102722201179804889:1:1000.00
-00003102722201179808965:1:3017.08
-00003102722201179818972:1:1000.00
-00003102722201179807977:1:1500.00
-00003102722201179808965:1:8860.59
-00003102722201179812125:1:1000.00
-00003102722201179807977:1:3500.00
-00003102722201179803544:1:10.00
-00003102722201179818624:1:1000.00
-00003102722201179803151:1:683.00
-00003102722201179808437:1:5378.50
-00003102722201179808437:1:9342.80
-00003102722201179805190:1:355.00
-00003102722201179817748:1:1000.00
-00003102722201179808113:1:955.00
-00003102722201179805190:1:3552.00
-00003102722201179803843:1:5610.00
-00003102722201179813933:1:1895.00
-00003102722201179814513:1:2257.00
-00003102722201179810991:1:1000.00
-00003102722201179806408:1:20100.00
-00003102722201179806258:1:1000.00
-00003102722201179800420:1:10.00
-00003102722201179804290:1:1013.00
-00003102722201179812292:1:1001.00
-00003102722201179806765:1:9890.00
-00003102722201179807971:1:1020.00
-00003102722201179800420:1:10.00
-00003102722201179807931:1:1001.00
-00003102722201179807931:1:30041.01
-00003102722201179807931:1:23000.00
-00003102722201179808253:1:3217.00
-00003102722201179808253:1:2951.00
-00003102722201179808760:1:1000.00
-00003102722201179807255:1:1000.00
-00003102722201179803601:1:1570.00
-00003102722201179808858:1:45708.00
-00003102722201179813461:1:3105.00
-00003102722201179803428:1:10.00
-00003102722201179805033:1:1000.00
-00003102722201179807095:1:3022.00
-00003102722201179806408:1:9990.00
-00003102722201179813461:1:3282.00
-00003102722201179807095:1:3431.00
-00003102722201179813461:1:2582.00
-00003102722201179803668:1:1053.00
-00003102722201179802689:1:4216.00
-00003102722201179813461:1:3520.00
-00003102722201179802689:1:4327.00
-00003102722201179802337:1:6800.00
-00003102722201179812150:1:4724.00
-00003102722201179818625:1:1000.00
-00003102722201179802337:1:6200.00
-00003102722201179808400:1:9235.00
-00003102722201179804877:1:2369.00
-00003102722201179804877:1:2367.00
-00003102722201179801198:1:18000.00
-00003102722201179804877:1:2796.00
-00003102722201179804877:1:698.00
-00003102722201179802337:1:5746.00
-00003102722201179804877:1:369.00
-00003102722201179804877:1:697.00
-00003102722201179803151:1:995.00
-00003102722201179808643:1:1079.00
-00003102722201179803757:1:4335.00
-00003102722201179818625:1:7000.00
-00003102722201179803976:1:2999.00
-00003102722201179803706:1:1001.00
-00003102722201179803757:1:410.00
-00003102722201179803941:1:860.00
-00003102722201179814523:1:1128.00
-00003102722201179806713:1:1015.00
-00003102722201179803941:1:535.00
-00003102722201179802337:1:6012.00
-00003102722201179802344:1:1000.00
-00003102722201179800486:1:100.00
-00003102722201179802036:1:1000.00
-00003102722201179801500:1:3503.00
-00003102722201179801653:1:20000.00
-00003102722201179812104:1:1000.00
-00003102722201179800797:1:34580.00
-00003102722201179806200:1:2100.00
-00003102722201179801653:1:10000.00
-00003102722201179800689:1:1000.00
-00003102722201179801500:1:2248.00
-00003102722201179805434:1:1391.00
-00003102722201179801500:1:3005.00
-00003102722201179801633:1:4300.00
-00003102722201179801500:1:2575.00
-00003102722201179801500:1:1745.00
-00003102722201179801500:1:3169.00
-00003102722201179809196:1:1000.00
-00003102722201179807301:1:1572.00
-00003102722201179812551:1:100.00
-00003102722201179811463:1:1000.00
-00003102722201179808710:1:70.30
-00003102722201179811104:1:1139.39
-00003102722201179808710:1:7030.00
-00003102722201179811104:1:2020.20
-00003102722201179803760:1:965.00
-00003102722201179800689:1:7683.00
-00003102722201179803870:1:1000.00
-00003102722201179803821:1:15820.00
-00003102722201179803152:1:989.00
-00003102722201179800486:1:3723.00
-00003102722201179800689:1:7758.00
-00003102722201179803870:1:13266.00
-00003102722201179808217:1:921.00
-00003102722201179805426:1:7600.00
-00003102722201179812551:1:900.00
-00003102722201179803793:1:2070.00
-00003102722201179805426:1:2800.00
-00003102722201179811306:1:3095.00
-00003102722201179803793:1:5480.00
-00003102722201179806105:1:1388.00
-00003102722201179812210:1:1000.00
-00003102722201179803721:1:1000.00
-00003102722201179803870:1:6626.00
-00003102722201179809119:1:1000.00
-00003102722201179807674:1:1000.00
-00003102722201179808037:1:1000.00
-00003102722201179807674:1:100.00
-00003102722201179803285:1:500.00
-00003102722201179803857:1:1000.00
-00003102722201179802694:1:1020.00
-00003102722201179808135:1:1000.00
-00003102722201179809065:1:1085.00
-00003102722201179807674:1:500.00
-00003102722201179800688:1:1000.00
-00003102722201179812068:1:20001.00
-00003102722201179801304:1:1000.00
-00003102722201179807674:1:300.00
-00003102722201179808561:1:7200.00
-00003102722201179814226:1:30008.00
-00003102722201179809194:1:1000.00
-00003102722201179818964:1:15683.00
-00003102722201179803919:1:30.00
-00003102722201179808427:1:2065.00
-00003102722201179807482:1:4850.00
-00003102722201179808427:1:3280.00
-00003102722201179811306:1:11.90
-00003102722201179813142:1:100.00
-00003102722201179808427:1:2440.00
-00003102722201179803919:1:4630.00
-00003102722201179811400:1:3285.00
-00003102722201179809034:1:860.00
-00003102722201179818951:1:1000.00
-00003102722201179811306:1:109.00
-00003102722201179801825:1:950.00
-00003102722201179803919:1:1650.00
-00003102722201179805434:1:485.00
-00003102722201179803773:1:10000.00
-00003102722201179813793:1:1570.00
-00003102722201179801961:1:4715.00
-00003102722201179801825:1:955.00
-00003102722201179801650:1:455.00
-00003102722201179809079:1:1001.00
-00003102722201179806954:1:1000.00
-00003102722201179818684:1:1000.00
-00003102722201179808392:1:1020.00
-00003102722201179801650:1:320.00
-00003102722201179818951:1:1000.00
-00003102722201179808040:1:7364.00
-00003102722201179803818:1:1000.00
-00003102722201179818951:1:1000.00
-00003102722201179803818:1:3700.00
-00003102722201179801650:1:900.00
-00003102722201179801635:1:2993.00
-00003102722201179813142:1:100.01
-00003102722201179817441:1:1000.00
-00003102722201179800667:1:1000.00
-00003102722201179815551:1:7961.00
-00003102722201179814481:1:1100.00
-00003102722201179818981:1:1000.00
-00003102722201179801635:1:2356.00
-00003102722201179801317:1:10.00
-00003102722201179808934:1:980.00
-00003102722201179806773:1:1000.00
-00003102722201179813142:1:1000.00
-00003102722201179808934:1:900.00
-00003102722201179813142:1:990.00
-00003102722201179803761:1:5693.00
-00003102722201179808253:1:2733.00
-00003102722203019003750:1:1000.00
-00003102722201179809053:1:685.00
-00003102722201179803287:1:300.00
-00003102722201179803287:1:2600.00
-00003102722201179803287:1:3520.00
-00003102722201179806326:1:4317.00
-00003102722201179809053:1:515.00
-00003102722201179808235:1:1088.00
-00003102722201179812479:1:1000.00
-00003102722201179803042:1:1646.00
-00003102722201179808883:1:518.00
-00003102722201179801505:1:5015.00
-00003102722201179813461:1:2859.00
-00003102722201179808883:1:527.00
-00003102722201179806106:1:466.00
-00003102722201179803706:1:833.00
-00003102722201179803706:1:724.00
-00003102722201179801570:1:9386.00
-00003102722201179806106:1:688.00
-00003102722201179801570:1:6839.00
-00003102722201179808646:1:900.00
-00003102722201179818611:1:1000.00
-00003102722201179812210:1:785.00
-00003102722201179801317:1:14647.00
-00003102722201179801570:1:4375.00
-00003102722201179802710:1:10.00
-00003102722201179800486:1:5878.00
-00003102722201179802710:1:1000.00
-00003102722201179806989:1:875.00
-00003102722201179806330:1:1001.00
-00003102722201179812210:1:513.00
-00003102722201179808876:1:6524.00
-00003102722201179808876:1:1534.00
-00003102722201179818611:1:990.00
-00003102722201179813904:1:1000.00
-00003102722201179808876:1:853.00
-00003102722201179812131:1:9060.00
-00003102722201179803706:1:718.00
-00003102722201179802035:1:9562.00
-00003102722201179803750:1:15000.00
-00003102722201179803706:1:739.00
-00003102722201179803843:1:6370.00
-00003102722201179801570:1:6839.00
-00003102722201179814215:1:3750.00
-00003102722201179805928:1:4855.00
-00003102722201179800667:1:19000.00
-00003102722201179807288:1:1000.00
-00003102722201179813104:1:9998.88
-00003102722201179807094:1:5913.00
-00003102722201179812454:1:1000.01
-00003102722201179808765:1:1020.00
-00003102722201179804263:1:6370.00
-00003102722201179817441:1:10000.00
-00003102722203019003751:1:1000.00
-00003102722201179808200:1:1000.00
-00003102722201179807330:1:1101.00
-00003102722201179804263:1:855.00
-00003102722201179808137:1:8000.00
-00003102722203019000130:1:1028.00
-00003102722201179806263:1:1000.00
-00003102722201179804882:1:1372.00
-00003102722201179803760:1:998.00
-00003102722201179803760:1:995.00
-00003102722201179807682:1:1000.00
-00003102722201179804383:1:18455.55
-00003102722201179807682:1:1000.00
-00003102722201179806765:1:7690.00
-00003102722201179818685:1:1000.00
-00003102722201179807682:1:1000.00
-00003102722201179807682:1:1000.00
-00003102722201179802627:1:1000.00
-00003102722201179807682:1:656.00
-00003102722201179808414:1:169.00
-00003102722201179803821:1:11988.00
-00003102722201179802701:1:1000.00
-00003102722201179802694:1:3585.00
-00003102722201179808770:1:3010.00
-00003102722201179807682:1:410.00
-00003102722201179816178:1:100.00
-00003102722201179802038:1:1058.00
-00003102722201179803821:1:10980.00
-00003102722201179802303:1:11500.00
-00003102722201179807682:1:936.00
-00003102722201179804430:1:4120.00
-00003102722201179801843:1:2648.00
-00003102722201179814237:1:2500.00
-00003102722201179801843:1:2702.00
-00003102722201179808414:1:1142.00
-00003102722201179804430:1:3850.00
-00003102722201179803151:1:934.00
-00003102722201179812150:1:10264.00
-00003102722201179818703:1:1000.00
-00003102722201179817860:1:1000.00
-00003102722201179801161:1:1000.00
-00003102722201179808884:1:1240.00
-00003102722201179802193:1:917.00
-00003102722201179806986:1:3859.00
-00003102722201179803260:1:968.00
-00003102722201179802193:1:938.00
-00003102722201179808590:1:1000.00
-00003102722201179804430:1:10600.00
-00003102722201179815791:1:2180.00
-00003102722201179803818:1:3000.00
-00003102722201179806229:1:999.99
-00003102722201179808643:1:8790.00
-00003102722201179806229:1:760.00
-00003102722201179808883:1:1050.00
-00003102722201179808039:1:50000.00
-00003102722201179804430:1:20800.00
-00003102722201179808129:1:10.00
-00003102722201179809052:1:90.00
-00003102722201179812150:1:3109.00
-00003102722201179808934:1:890.00
-00003102722201179806979:1:13412.00
-00003102722201179810991:1:14500.00
-00003102722201179805434:1:719.00
-00003102722201179809052:1:4900.00
-00003102722201179808934:1:980.00
-00003102722201179802627:1:1000.00
-00003102722201179806266:1:1000.00
-00003102722201179809052:1:585.00
-00003102722201179810991:1:4000.00
-00003102722201179803802:1:1000.00
-00003102722201179803834:1:957.00
-00003102722201179802024:1:19120.12
-00003102722201179802024:1:18081.05
-00003102722201179803834:1:967.00
-00003102722201179801710:1:3210.00
-00003102722201179807414:1:1000.00
-00003102722201179809082:1:4860.00
-00003102722201179807414:1:68.00
-00003102722201179809082:1:1540.00
-00003102722201179803802:1:1000.00
-00003102722201179806914:1:10.00
-00003102722201179812751:1:5.06
-00003102722201179812751:1:500.00
-00003102722201179808933:1:10.00
-00003102722201179808933:1:100.00
-00003102722201179808933:1:100.00
-00003102722201179803177:1:1000.00
-00003102722201179802640:1:10.00
-00003102722201179813462:1:4999.99
-00003102722201179802640:1:1000.00
-00003102722201179803188:1:1532.00
-00003102722201179812000:1:13411.00
-00003102722201179812000:1:3951.00
-00003102722201179803177:1:1288.00
-00003102722201179812000:1:4122.00
-00003102722201179809128:1:672.00
-00003102722201179808427:1:365.00
-00003102722201179808472:1:1000.00
-00003102722201179808427:1:1350.00
-00003102722201179808876:1:4637.00
-00003102722201179815791:1:2355.00
-00003102722201179808876:1:1637.00
-00003102722201179803020:1:893.00
-00003102722201179808427:1:1999.00
-00003102722201179808427:1:2130.00
-00003102722201179808427:1:1436.00
-00003102722201179811496:1:1000.00
-00003102722201179809128:1:1306.00
-00003102722201179802651:1:4858.00
-00003102722201179809102:1:3286.00
-00003102722201179809102:1:1714.00
-00003102722201179808935:1:302.00
-00003102722201179808935:1:3022.00
-00003102722201179808069:1:3658.00
-00003102722201179808935:1:412.00
-00003102722201179802669:1:5400.00
-00003102722201179803151:1:4986.00
-00003102722201179806971:1:1000.00
-00003102722201179803011:1:1620.00
-00003102722201179804430:1:31200.00
-00003102722201179807450:1:138.00
-00003102722201179806700:1:2999.00
-00003102722201179805162:1:38.00
-00003102722201179805162:1:10.00
-00003102722201179807414:1:158.00
-00003102722201179808414:1:1231.00
-00003102722201179803966:1:1000.00
-00003102722201179800486:1:983.00
-00003102722201179808217:1:888.80
-00003102722201179808217:1:853.00
-00003102722201179808710:1:70.03
-00003102722201179811177:1:1000.00
-00003102722201179806914:1:100.00
-00003102722201179803184:1:1000.00
-00003102722201179808400:1:8325.00
-00003102722201179808723:1:3428.00
-00003102722201179803151:1:997.00
-00003102722203019004050:1:1100.00
-00003102722201179809185:1:1000.00
-00003102722201179808238:1:1000.00
-00003102722203019004050:1:1000.00
-00003102722201179808238:1:7998.65
-00003102722201179808238:1:3485.34
-00003102722201179802757:1:8523.00
-00003102722201179808238:1:9886.53
-00003102722201179803151:1:982.00
-00003102722201179805847:1:1000.00
-00003102722201179807611:1:2500.00
-00003102722201179801584:1:466.00
-00003102722201179809046:1:500.00
-00003102722201179809046:1:999.80
-00003102722201179805425:1:3017.00
-00003102722201179803020:1:885.00
-00003102722201179806711:1:5337.00
-00003102722201179808958:1:1025.00
-00003102722201179802689:1:3476.00
-00003102722201179802689:1:4273.00
-00003102722201179804889:1:500.00
-00003102722201179811979:1:1000.00
-00003102722201179808266:1:858.00
-00003102722201179803020:1:1198.00
-00003102722201179808266:1:765.00
-00003102722201179808266:1:532.00
-00003102722201179808876:1:6859.00
-00003102722201179808876:1:2327.00
-00003102722201179808876:1:1973.00
-00003102722201179808876:1:8361.00
-00003102722201179803020:1:966.00
-00003102722201179803151:1:399.00
-00003102722201179801700:1:2038.00
-00003102722201179809082:1:2650.00
-00003102722201179809101:1:1600.00
-00003102722201179812181:1:1000.00
-00003102722201179809102:1:10.05
-00003102722201179809102:1:1060.00
-00003102722201179809102:1:3929.95
-00003102722201179809128:1:983.00
-00003102722201179809128:1:1164.00
-00003102722201179803020:1:1209.00
-00003102722201179802716:1:5649.00
-00003102722201179809101:1:1973.00
-00003102722201179802656:1:1001.00
-00003102722201179811300:1:1039.00
-00003102722201179802743:1:4010.00
-00003102722201179809000:1:1655.00
-00003102722201179801017:1:1010.00
-00003102722201179809134:1:6300.00
-00003102722201179812131:1:570.00
-00003102722201179801017:1:1010.00
-00003102722201179807963:1:5082.00
-00003102722201179809134:1:80.77
-00003102722201179809134:1:8701.00
-00003102722201179808427:1:1120.00
-00003102722201179809128:1:2281.00
-00003102722201179811499:1:1000.00
-00003102722201179809026:1:7640.00
-00003102722201179801502:1:2675.00
-00003102722201179818950:1:974.00
-00003102722201179807988:1:1000.00
-00003102722201179813793:1:1685.00
-00003102722203019003751:1:5397.00
-00003102722201179808113:1:866.00
-00003102722201179806963:1:6000.00
-00003102722201179803152:1:996.00
-00003102722201179803832:1:3220.00
-00003102722201179811301:1:1195.00
-00003102722201179811301:1:278.00
-00003102722201179809128:1:1163.00
-00003102722201179808246:1:482.00
-00003102722201179803152:1:996.00
-00003102722201179813462:1:4999.99
-00003102722201179808816:1:200.00
-00003102722201179808816:1:1200.00
-00003102722201179802743:1:1000.00
-00003102722201179812105:1:1000.00
-00003102722201179808816:1:1000.00
-00003102722201179808932:1:1001.00
-00003102722201179803766:1:5200.00
-00003102722201179802745:1:1185.00
-00003102722201179809134:1:6100.00
-00003102722201179810993:1:1000.00
-00003102722201179813195:1:1000.00
-00003102722201179806963:1:5200.00
-00003102722201179809128:1:206.00
-00003102722201179800796:1:1298.00
-00003102722201179808826:1:1000.00
-00003102722201179809128:1:1034.00
-00003102722201179808912:1:200.00
-00003102722201179803020:1:1529.00
-00003102722203019003753:1:800.00
-00003102722201179807411:1:1002.00
-00003102722201179806961:1:3251.00
-00003102722201179805425:1:20100.00
-00003102722203019003753:1:600.00
-00003102722201179807283:1:1000.00
-00003102722201179802601:1:198.00
-00003102722201179813461:1:1000.00
-00003102722201179804708:1:200.00
-00003102722201179813169:1:4750.00
-00003102722201179804708:1:2355.00
-00003102722203019003751:1:7569.00
-00003102722201179808248:1:3295.00
-00003102722201179806312:1:1000.00
-00003102722201179801163:1:700.00
-00003102722201179808247:1:4582.00
-00003102722201179806312:1:1000.00
-00003102722201179803399:1:12.00
-00003102722201179808853:1:2500.00
-00003102722201179808853:1:1800.00
-00003102722201179808247:1:2371.00
-00003102722201179803757:1:5064.00
-00003102722201179808853:1:1700.00
-00003102722201179806312:1:1000.00
-00003102722201179808853:1:3510.00
-00003102722201179818950:1:940.00
-00003102722201179806312:1:1000.00
-00003102722201179801161:1:2000.00
-00003102722201179800621:1:1000.00
-00003102722201179808614:1:1000.00
-00003102722201179806312:1:1000.00
-00003102722201179803187:1:1000.00
-00003102722201179803187:1:5000.00
-00003102722201179807288:1:1002.00
-00003102722201179801161:1:2000.00
-00003102722201179809134:1:4308.00
-00003102722201179806312:1:1000.00
-00003102722201179806263:1:990.00
-00003102722201179809134:1:18508.00
-00003102722201179806263:1:996.00
-00003102722201179809134:1:15777.00
-00003102722201179806263:1:1000.00
-00003102722203019003753:1:268.80
-00003102722201179806229:1:566.00
-00003102722201179814157:1:10.00
-00003102722201179803834:1:916.00
-00003102722201179806914:1:895.00
-00003102722201179808803:1:5300.00
-00003102722201179813193:1:10500.00
-00003102722201179806243:1:1001.00
-00003102722201179808028:1:956.00
-00003102722201179808028:1:912.00
-00003102722201179808028:1:925.00
-00003102722201179809129:1:9573.00
-00003102722201179812464:1:3685.00
-00003102722201179804311:1:4000.00
-00003102722201179812555:1:900.00
-00003102722201179809129:1:7900.00
-00003102722201179809129:1:1950.00
-00003102722201179811224:1:135.00
-00003102722201179803905:1:12.80
-00003102722201179807289:1:21850.00
-00003102722201179800449:1:200.00
-00003102722201179812136:1:1000.00
-00003102722201179805428:1:1000.00
-00003102722201179805428:1:5012.22
-00003102722201179805428:1:830.00
-00003102722201179808870:1:16000.00
-00003102722201179812135:1:553.00
-00003102722201179812135:1:6687.00
-00003102722201179818611:1:1000.00
-00003102722201179803151:1:994.00
-00003102722201179818611:1:1000.00
-00003102722201179818611:1:1000.00
-00003102722201179805428:1:3000.00
-00003102722201179818611:1:1000.00
-00003102722201179803151:1:998.00
-00003102722201179806979:1:11059.00
-00003102722201179811123:1:5500.00
-00003102722201179815638:1:364.00
-00003102722201179811307:1:2100.00
-00003102722201179808949:1:10050.00
-00003102722201179801659:1:70000.00
-00003102722201179808949:1:10050.00
-00003102722201179812135:1:259.00
-00003102722201179812135:1:138.00
-00003102722201179808823:1:2109.00
-00003102722201179812135:1:213.00
-00003102722201179800875:1:1000.00
-00003102722201179811111:1:13980.00
-00003102722201179818928:1:10010.00
-00003102722201179803287:1:860.00
-00003102722201179803287:1:535.00
-00003102722201179815638:1:25800.00
-00003102722201179815638:1:23200.00
-00003102722201179808613:1:1000.00
-00003102722201179815638:1:31050.00
-00003102722201179805428:1:1100.00
-00003102722201179808709:1:1000.00
-00003102722201179803151:1:904.00
-00003102722201179803151:1:983.00
-00003102722201179815587:1:5050.00
-00003102722201179808338:1:4937.00
-00003102722201179809000:1:1364.00
-00003102722201179815551:1:7739.00
-00003102722201179808338:1:3963.00
-00003102722201179809000:1:11.76
-00003102722201179808338:1:5922.00
-00003102722201179803811:1:8000.00
-00003102722201179803761:1:891.00
-00003102722201179801810:1:2531.00
-00003102722201179812150:1:9952.00
-00003102722201179818929:1:1000.00
-00003102722201179808444:1:4899.00
-00003102722201179803152:1:998.00
-00003102722201179808444:1:833.00
-00003102722201179818959:1:1000.00
-00003102722201179804245:1:1000.00
-00003102722201179812102:1:1000.00
-00003102722201179808444:1:11448.00
-00003102722201179808338:1:7892.00
-00003102722201179818964:1:931.00
-00003102722201179804286:1:450.00
-00003102722201179803761:1:867.00
-00003102722201179803018:1:2346.00
-00003102722201179810950:1:7658.00
-00003102722201179808258:1:3900.00
-00003102722201179808038:1:3845.12
-00003102722201179802651:1:938.00
-00003102722201179807974:1:1020.00
-00003102722201179811103:1:7850.00
-00003102722201179802651:1:968.00
-00003102722201179802651:1:5388.00
-00003102722201179806258:1:6885.00
-00003102722201179808137:1:999.00
-00003102722201179811103:1:8250.00
-00003102722201179808137:1:1000.00
-00003102722201179803042:1:74.00
-00003102722201179808258:1:800.00
-00003102722201179802747:1:2563.00
-00003102722201179807402:1:18500.00
-00003102722201179817389:1:8963.00
-00003102722201179815791:1:3190.00
-00003102722201179806983:1:1125.00
-00003102722201179803901:1:9381.00
-00003102722201179817389:1:8996.00
-00003102722201179814231:1:1000.00
-00003102722201179814214:1:6970.00
-00003102722201179808137:1:4600.00
-00003102722201179807414:1:128.00
-00003102722201179807414:1:4537.00
-00003102722201179818654:1:1100.00
-00003102722201179813185:1:918.00
-00003102722201179812160:1:1000.00
-00003102722201179801380:1:858.00
-00003102722201179813142:1:999.91
-00003102722201179803020:1:968.00
-00003102722201179812160:1:1000.00
-00003102722201179806800:1:3750.00
-00003102722201179813142:1:999.92
-00003102722201179813142:1:980.00
-00003102722201179812131:1:996.00
-00003102722201179803825:1:3500.00
-00003102722201179803152:1:986.00
-00003102722201179801150:1:1001.00
-00003102722201179807489:1:1000.00
-00003102722201179812172:1:1000.00
-00003102722201179806719:1:1158.00
-00003102722201179807489:1:1679.00
-00003102722201179802747:1:4136.00
-00003102722201179812102:1:1108.00
-00003102722201179805192:1:2000.00
-00003102722201179818908:1:1100.00
-00003102722201179802710:1:609.74
-00003102722201179806765:1:8530.00
-00003102722201179802710:1:609.74
-00003102722201179809101:1:1927.00
-00003102722201179802710:1:609.74
-00003102722201179803802:1:1000.00
-00003102722201179808476:1:5384.00
-00003102722201179802710:1:609.74
-00003102722201179818661:1:1000.00
-00003102722201179803802:1:875.00
-00003102722201179815701:1:1000.00
-00003102722201179812160:1:958.00
-00003102722201179806479:1:1000.00
-00003102722201179812160:1:968.00
-00003102722201179818964:1:8753.00
-00003102722201179818611:1:998.00
-00003102722201179801693:1:19000.00
-00003102722201179818964:1:7821.00
-00003102722201179818611:1:998.00
-00003102722201179808440:1:10656.00
-00003102722201179818611:1:836.00
-00003102722201179806479:1:14930.00
-00003102722201179801712:1:10250.00
-00003102722201179806728:1:2810.00
-00003102722201179806105:1:1156.00
-00003102722201179805983:1:2687.00
-00003102722201179818908:1:985.00
-00003102722201179818611:1:7115.00
-00003102722201179804877:1:3397.00
-00003102722201179818908:1:397.00
-00003102722201179812209:1:998.00
-00003102722201179806106:1:686.00
-00003102722201179818964:1:315.00
-00003102722201179818908:1:1000.00
-00003102722201179812209:1:997.00
-00003102722201179804877:1:1359.00
-00003102722201179806106:1:486.00
-00003102722201179812209:1:996.00
-00003102722201179806719:1:4900.00
-00003102722201179804877:1:1259.00
-00003102722201179815589:1:1000.00
-00003102722201179812209:1:1000.00
-00003102722201179804201:1:1000.00
-00003102722203019003751:1:837.00
-00003102722203019003751:1:1537.00
-00003102722201179803677:1:1299.00
-00003102722201179806197:1:150.00
-00003102722201179818964:1:362.00
-00003102722201179806197:1:4532.00
-00003102722201179805434:1:1596.00
-00003102722201179818908:1:963.00
-00003102722201179805428:1:2070.00
-00003102722201179805428:1:3600.00
-00003102722201179818958:1:1000.00
-00003102722201179804791:1:1529.00
-00003102722201179818705:1:1000.00
-00003102722201179804350:1:1000.00
-00003102722201179806922:1:1000.00
-00003102722201179801810:1:4637.00
-00003102722203019000455:1:7101.00
-00003102722201179807642:1:1000.00
-00003102722201179801961:1:5314.00
-00003102722201179815702:1:1000.00
-00003102722201179808958:1:23500.00
-00003102722201179806922:1:8000.00
-00003102722201179804877:1:1259.00
-00003102722201179818712:1:8795.00
-00003102722201179801628:1:1000.00
-00003102722201179817860:1:63.20
-00003102722201179807094:1:3111.00
-00003102722201179801628:1:10000.00
-00003102722201179806700:1:3668.00
-00003102722201179801810:1:2562.00
-00003102722201179818705:1:4819.00
-00003102722201179807094:1:3013.00
-00003102722201179806700:1:3228.00
-00003102722201179806922:1:5000.00
-00003102722201179808087:1:3698.19
-00003102722201179806922:1:228.00
-00003102722201179803773:1:7400.00
-00003102722201179806208:1:2850.00
-00003102722201179808087:1:3251.92
-00003102722201179806922:1:22550.00
-00003102722201179802026:1:5829.00
-00003102722201179808087:1:5032.11
-00003102722201179803784:1:100.00
-00003102722201179805045:1:4000.00
-00003102722201179803784:1:150.00
-00003102722201179801607:1:1000.00
-00003102722201179808765:1:2135.00
-00003102722201179819004:1:1000.00
-00003102722201179806714:1:1000.00
-00003102722201179818604:1:1000.00
-00003102722201179818705:1:985.00
-00003102722201179808034:1:1000.00
-00003102722201179806922:1:25000.00
-00003102722201179808980:1:4190.00
-00003102722201179804350:1:270.00
-00003102722201179801607:1:5059.00
-00003102722201179808429:1:580.00
-00003102722201179807430:1:520.00
-00003102722201179806922:1:16000.00
-00003102722201179801607:1:6700.00
-00003102722201179818705:1:5296.00
-00003102722201179808441:1:1000.00
-00003102722201179808429:1:2180.00
-00003102722201179803797:1:5137.00
-00003102722201179806922:1:48000.00
-00003102722201179805428:1:7000.00
-00003102722201179800899:1:31852.00
-00003102722201179807414:1:3827.00
-00003102722201179803797:1:2415.00
-00003102722201179806922:1:11000.00
-00003102722201179803797:1:1486.00
-00003102722201179806714:1:10500.00
-00003102722201179802645:1:1017.00
-00003102722201179803498:1:2513.00
-00003102722201179803249:1:4012.00
-00003102722201179803784:1:100.00
-00003102722201179812102:1:2948.00
-00003102722201179800899:1:23168.00
-00003102722201179803797:1:1386.00
-00003102722201179806969:1:2530.00
-00003102722203019003888:1:1000.00
-00003102722201179816187:1:1108.00
-00003102722201179803784:1:1000.00
-00003102722201179819004:1:100.00
-00003102722201179800899:1:839.00
-00003102722201179812102:1:3305.00
-00003102722201179800899:1:986.00
-00003102722201179800899:1:953.00
-00003102722201179800899:1:969.00
-00003102722201179805424:1:2160.00
-00003102722201179800899:1:978.00
-00003102722201179812285:1:2529.00
-00003102722201179803498:1:2591.00
-00003102722201179802670:1:14000.00
-00003102722201179804260:1:181.00
-00003102722201179800899:1:8635.00
-00003102722201179803152:1:997.00
-00003102722201179802627:1:9880.00
-00003102722201179804727:1:986.00
-00003102722203019003888:1:20.00
-00003102722201179803720:1:1000.00
-00003102722201179803683:1:1763.00
-00003102722201179814211:1:1026.00
-00003102722201179818933:1:1000.00
-00003102722201179814211:1:864.40
-00003102722201179803760:1:998.00
-00003102722201179814202:1:2053.69
-00003102722201179818933:1:2100.00
-00003102722201179803498:1:2871.00
-00003102722201179806259:1:1000.00
-00003102722201179815703:1:1000.00
-00003102722201179807974:1:5720.00
-00003102722201179800790:1:3428.00
-00003102722201179803020:1:1296.00
-00003102722201179800790:1:2482.00
-00003102722201179806989:1:833.00
-00003102722201179818607:1:1000.00
-00003102722201179817389:1:236.00
-00003102722201179803020:1:1360.00
-00003102722201179808223:1:1000.00
-00003102722201179802739:1:10.00
-00003102722203019000455:1:9998.00
-00003102722203019000455:1:4998.00
-00003102722201179818667:1:1000.00
-00003102722201179802180:1:1000.00
-00003102722201179809453:1:10.00
-00003102722201179801969:1:200.00
-00003102722203019003888:1:20.00
-00003102722201179813779:1:1008.00
-00003102722201179803498:1:3111.00
-00003102722201179803299:1:3960.00
-00003102722201179803299:1:7920.00
-00003102722201179808590:1:210.00
-00003102722201179803299:1:4180.00
-00003102722201179809452:1:10.00
-00003102722201179818667:1:865.00
-00003102722201179808590:1:210.00
-00003102722201179813779:1:108.00
-00003102722201179809052:1:8800.00
-00003102722201179803733:1:1000.00
-00003102722201179813779:1:106.00
-00003102722201179806259:1:1000.00
-00003102722201179803299:1:7480.00
-00003102722201179803299:1:3090.00
-00003102722201179803299:1:3860.00
-00003102722201179806259:1:1000.00
-00003102722201179803198:1:1000.00
-00003102722201179803299:1:6190.00
-00003102722201179813113:1:10.00
-00003102722201179809451:1:1000.00
-00003102722201179801182:1:5730.00
-00003102722201179809453:1:1000.00
-00003102722201179804638:1:1000.00
-00003102722201179805433:1:1200.00
-00003102722201179803184:1:10000.00
-00003102722201179803498:1:3015.00
-00003102722201179803184:1:15000.00
-00003102722201179803184:1:5000.00
-00003102722201179804383:1:8523.33
-00003102722201179803184:1:20000.00
-00003102722201179812162:1:1000.00
-00003102722201179812105:1:985.00
-00003102722201179803683:1:1650.00
-00003102722201179808646:1:980.00
-00003102722201179807972:1:6988.00
-00003102722201179818972:1:884.00
-00003102722201179803520:1:3200.00
-00003102722201179808110:1:30000.00
-00003102722201179806197:1:1231.00
-00003102722201179806229:1:877.00
-00003102722201179802185:1:1000.00
-00003102722201179809128:1:457.00
-00003102722201179804715:1:1000.00
-00003102722201179807460:1:1000.00
-00003102722201179804279:1:1100.00
-00003102722201179818653:1:2600.00
-00003102722201179803042:1:131.00
-00003102722201179810951:1:1000.00
-00003102722201179806229:1:568.00
-00003102722201179818964:1:5182.00
-00003102722201179815645:1:20.00
-00003102722201179804446:1:1000.00
-00003102722201179809453:1:1000.00
-00003102722201179803936:1:1000.00
-00003102722201179803568:1:2847.00
-00003102722201179807905:1:1274.00
-00003102722201179802739:1:6906.00
-00003102722201179803498:1:2911.00
-00003102722201179804111:1:751.00
-00003102722201179801080:1:1000.00
-00003102722201179802739:1:1605.00
-00003102722201179806240:1:1000.00
-00003102722201179804111:1:715.00
-00003102722201179809105:1:1350.00
-00003102722201179804111:1:3910.00
-00003102722201179809452:1:2450.00
-00003102722201179804767:1:9873.00
-00003102722201179803498:1:2545.00
-00003102722201179808599:1:1000.00
-00003102722201179804727:1:1280.00
-00003102722201179806263:1:1000.00
-00003102722201179806263:1:990.00
-00003102722201179803767:1:1000.00
-00003102722201179806263:1:990.00
-00003102722201179818611:1:7986.00
-00003102722201179801650:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179818921:1:10000.00
-00003102722201179806720:1:1023.00
-00003102722201179818652:1:1050.00
-00003102722201179803042:1:47.00
-00003102722201179801650:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179801150:1:2371.10
-00003102722201179803821:1:8015.00
-00003102722201179806197:1:980.00
-00003102722201179801777:1:27000.00
-00003102722201179806197:1:1120.00
-00003102722201179803498:1:2541.00
-00003102722201179801080:1:1500.00
-00003102722201179807414:1:2130.00
-00003102722201179802414:1:1582.00
-00003102722201179801343:1:1000.00
-00003102722201179812150:1:9614.00
-00003102722201179803018:1:13231.00
-00003102722201179808221:1:2764.00
-00003102722201179808770:1:19999.99
-00003102722201179803498:1:3006.00
-00003102722201179812170:1:855.00
-00003102722201179808221:1:3247.00
-00003102722201179812102:1:4858.00
-00003102722201179803760:1:994.00
-00003102722201179800902:1:1000.00
-00003102722201179808113:1:9966.00
-00003102722201179808338:1:7289.00
-00003102722201179803399:1:9500.00
-00003102722201179807674:1:200.00
-00003102722201179800902:1:6000.00
-00003102722201179802193:1:948.00
-00003102722201179807674:1:300.00
-00003102722201179802186:1:1000.00
-00003102722201179817782:1:1000.00
-00003102722201179802193:1:962.00
-00003102722201179801116:1:1000.00
-00003102722201179801666:1:23659.00
-00003102722201179804727:1:990.00
-00003102722201179803601:1:2865.00
-00003102722201179803428:1:9410.00
-00003102722201179813252:1:10342.00
-00003102722201179801343:1:10000.00
-00003102722201179808248:1:3594.00
-00003102722201179807674:1:500.00
-00003102722201179808040:1:2945.00
-00003102722201179801080:1:10000.00
-00003102722201179808427:1:3250.00
-00003102722201179812130:1:1000.00
-00003102722201179808040:1:2568.00
-00003102722201179803733:1:980.00
-00003102722201179812130:1:3000.00
-00003102722201179808040:1:3069.00
-00003102722201179808040:1:2917.00
-00003102722201179805427:1:4220.00
-00003102722201179803498:1:4812.00
-00003102722201179818926:1:2011.00
-00003102722201179808416:1:1080.00
-00003102722201179804716:1:300.00
-00003102722201179805928:1:3812.00
-00003102722201179801693:1:10050.00
-00003102722201179806954:1:9006.00
-00003102722201179803804:1:1000.00
-00003102722201179805928:1:1815.00
-00003102722201179801017:1:1225.00
-00003102722201179806954:1:1668.00
-00003102722201179803498:1:4806.00
-00003102722201179818654:1:635.00
-00003102722201179811988:1:1000.00
-00003102722201179818654:1:635.00
-00003102722201179805434:1:2561.00
-00003102722201179806263:1:1000.00
-00003102722201179808935:1:410.00
-00003102722201179812209:1:960.00
-00003102722201179818654:1:635.00
-00003102722201179818705:1:14295.00
-00003102722201179806263:1:1000.00
-00003102722201179812209:1:995.00
-00003102722201179814484:1:7400.00
-00003102722201179808935:1:296.00
-00003102722201179808883:1:816.00
-00003102722201179806263:1:1000.00
-00003102722201179814484:1:6900.00
-00003102722201179803782:1:4760.96
-00003102722201179803498:1:4706.00
-00003102722201179808883:1:620.00
-00003102722201179806821:1:1000.00
-00003102722201179818929:1:1000.00
-00003102722201179808935:1:2330.00
-00003102722201179812209:1:980.00
-00003102722201179808596:1:1000.00
-00003102722201179814484:1:7780.00
-00003102722201179809056:1:2750.00
-00003102722201179803151:1:982.00
-00003102722201179803999:1:1000.00
-00003102722201179803151:1:989.00
-00003102722201179801680:1:1000.00
-00003102722201179803710:1:632.00
-00003102722201179809102:1:30.28
-00003102722201179803710:1:4260.00
-00003102722201179818611:1:968.00
-00003102722201179803498:1:685.00
-00003102722201179805658:1:1000.00
-00003102722201179804773:1:534.00
-00003102722201179803498:1:2003.00
-00003102722201179809102:1:3028.00
-00003102722201179803498:1:1035.00
-00003102722201179812020:1:3025.00
-00003102722201179808900:1:6580.00
-00003102722201179809172:1:1798.00
-00003102722201179809102:1:2632.00
-00003102722201179803020:1:1505.00
-00003102722201179808238:1:9998.65
-00003102722201179818709:1:850.00
-00003102722201179808238:1:13335.46
-00003102722201179806969:1:2610.00
-00003102722201179818607:1:10986.00
-00003102722201179818709:1:1000.00
-00003102722201179811991:1:12536.00
-00003102722201179803498:1:1435.00
-00003102722201179812161:1:1000.00
-00003102722201179803568:1:2910.00
-00003102722201179813779:1:8993.00
-00003102722201179803710:1:1321.00
-00003102722201179803498:1:3108.00
-00003102722201179811311:1:9812.00
-00003102722201179803710:1:3801.00
-00003102722201179803980:1:5350.00
-00003102722201179818705:1:15296.00
-00003102722201179803498:1:2812.00
-00003102722201179802671:1:1099.90
-00003102722201179812161:1:10100.00
-00003102722201179803498:1:3935.00
-00003102722201179800875:1:1000.00
-00003102722201179800875:1:1000.00
-00003102722201179803930:1:3000.00
-00003102722201179806255:1:1000.00
-00003102722201179804243:1:1000.00
-00003102722201179807094:1:6153.00
-00003102722201179805434:1:6537.00
-00003102722201179801585:1:2550.00
-00003102722201179808476:1:1873.00
-00003102722201179808552:1:8688.00
-00003102722201179803842:1:5790.00
-00003102722201179817490:1:1000.00
-00003102722201179812155:1:49989.00
-00003102722201179807414:1:2713.00
-00003102722201179806105:1:2547.00
-00003102722201179805983:1:1865.00
-00003102722201179807414:1:2031.00
-00003102722201179808850:1:3684.00
-00003102722201179808643:1:8019.00
-00003102722201179801585:1:2945.00
-00003102722201179808850:1:2962.00
-00003102722201179811419:1:1050.00
-00003102722201179801585:1:226.00
-00003102722201179812105:1:990.00
-00003102722201179818705:1:15632.00
-00003102722201179808850:1:1986.00
-00003102722201179801585:1:358.00
-00003102722201179801585:1:336.00
-00003102722201179806238:1:1450.00
-00003102722201179806723:1:1035.00
-00003102722201179815645:1:2799.00
-00003102722201179806238:1:1850.00
-00003102722201179801585:1:2065.00
-00003102722201179801585:1:2458.00
-00003102722201179805008:1:10600.00
-00003102722201179803733:1:994.00
-00003102722201179805008:1:3008.00
-00003102722201179818662:1:1000.00
-00003102722201179800668:1:3000.00
-00003102722201179815645:1:3397.00
-00003102722201179808557:1:638.00
-00003102722201179805055:1:1100.00
-00003102722201179814525:1:849.00
-00003102722201179809105:1:3250.00
-00003102722201179811989:1:1000.00
-00003102722201179804243:1:8000.00
-00003102722201179814525:1:780.00
-00003102722201179814525:1:750.00
-00003102722201179814525:1:530.00
-00003102722201179803602:1:3488.00
-00003102722201179818648:1:1000.00
-00003102722203019000301:1:1001.00
-00003102722201179806981:1:1623.00
-00003102722201179806981:1:863.00
-00003102722201179815645:1:4900.00
-00003102722201179803940:1:1000.00
-00003102722201179808406:1:1000.00
-00003102722201179818952:1:1010.00
-00003102722201179804889:1:1000.00
-00003102722201179818972:1:850.00
-00003102722201179802610:1:1200.00
-00003102722201179808406:1:1000.00
-00003102722201179800484:1:10021.00
-00003102722201179814525:1:196.00
-00003102722201179813871:1:88.00
-00003102722201179802681:1:1004.00
-00003102722203019000301:1:312.00
-00003102722201179805434:1:2369.00
-00003102722201179807962:1:1000.00
-00003102722201179811314:1:1230.00
-00003102722201179802710:1:908.36
-00003102722201179809124:1:4630.00
-00003102722201179802797:1:120.00
-00003102722201179802710:1:1126.83
-00003102722201179814211:1:765.00
-00003102722201179803538:1:1958.00
-00003102722201179803538:1:1587.00
-00003102722201179812212:1:1000.00
-00003102722201179802710:1:500.00
-00003102722201179813906:1:99.00
-00003102722201179803538:1:1357.00
-00003102722201179803538:1:2694.00
-00003102722201179812166:1:1000.00
-00003102722201179813906:1:9998.00
-00003102722201179800669:1:10000.00
-00003102722201179803538:1:2758.00
-00003102722201179813931:1:1200.00
-00003102722201179808804:1:6180.00
-00003102722201179802710:1:2486.37
-00003102722201179803538:1:2471.00
-00003102722201179802610:1:3055.55
-00003102722201179805428:1:3700.00
-00003102722201179802710:1:2486.37
-00003102722201179813871:1:26378.00
-00003102722201179809085:1:1000.00
-00003102722201179807674:1:900.00
-00003102722201179812166:1:21500.00
-00003102722201179813871:1:13875.00
-00003102722201179808034:1:4988.00
-00003102722201179804244:1:1000.00
-00003102722201179813871:1:35847.00
-00003102722201179802331:1:4163.00
-00003102722201179818660:1:1000.00
-00003102722201179812537:1:1000.00
-00003102722201179804727:1:1385.00
-00003102722201179813680:1:1000.00
-00003102722201179812105:1:1000.00
-00003102722201179812555:1:2998.00
-00003102722201179803527:1:1000.00
-00003102722201179806140:1:300.00
-00003102722201179803249:1:3918.00
-00003102722201179803784:1:4038.00
-00003102722201179806245:1:1005.00
-00003102722201179801167:1:9126.00
-00003102722201179818611:1:998.00
-00003102722201179801167:1:18322.00
-00003102722201179808900:1:7689.00
-00003102722201179801167:1:24152.00
-00003102722201179808473:1:1002.00
-00003102722201179801167:1:18925.00
-00003102722201179815551:1:4300.00
-00003102722201179818929:1:1000.00
-00003102722201179806800:1:3730.00
-00003102722201179809124:1:4900.00
-00003102722201179812209:1:993.00
-00003102722201179809124:1:4700.00
-00003102722201179807487:1:1000.00
-00003102722201179815568:1:900.00
-00003102722201179803601:1:1985.00
-00003102722201179801591:1:2900.00
-00003102722201179801381:1:1000.00
-00003102722201179809187:1:20.00
-00003102722201179808072:1:4235.00
-00003102722201179815568:1:5000.00
-00003102722201179804440:1:1000.00
-00003102722201179814491:1:100.00
-00003102722201179809128:1:727.00
-00003102722201179807841:1:10.00
-00003102722201179803733:1:988.00
-00003102722201179806969:1:2510.00
-00003102722201179807841:1:10.00
-00003102722201179815568:1:950.00
-00003102722201179803685:1:2168.00
-00003102722201179802743:1:3217.00
-00003102722201179804727:1:630.00
-00003102722201179803465:1:1136.00
-00003102722201179803685:1:2385.00
-00003102722201179803685:1:389.00
-00003102722201179802783:1:4200.00
-00003102722201179817854:1:1000.00
-00003102722201179803685:1:2968.00
-00003102722201179808863:1:21881.00
-00003102722201179803685:1:976.00
-00003102722201179815568:1:850.00
-00003102722201179803186:1:4135.00
-00003102722201179817362:1:537.00
-00003102722201179802878:1:1000.00
-00003102722201179817362:1:1479.00
-00003102722201179815568:1:500.00
-00003102722201179803152:1:996.00
-00003102722201179808586:1:10.00
-00003102722201179803555:1:3058.00
-00003102722201179808586:1:1000.00
-00003102722201179808722:1:1000.00
-00003102722201179806140:1:298.00
-00003102722201179818922:1:10000.00
-00003102722201179809129:1:6800.00
-00003102722201179803555:1:8000.01
-00003102722201179804056:1:10.00
-00003102722201179806765:1:9240.00
-00003102722201179804727:1:510.00
-00003102722201179808471:1:1000.00
-00003102722201179818611:1:1000.00
-00003102722203019000145:1:500.00
-00003102722201179803065:1:1000.00
-00003102722201179810377:1:1000.00
-00003102722201179818611:1:1000.00
-00003102722201179805428:1:1300.00
-00003102722201179806979:1:9721.00
-00003102722201179818611:1:1000.00
-00003102722203019000145:1:1000.00
-00003102722201179804056:1:1000.00
-00003102722201179801709:1:27598.00
-00003102722201179805658:1:4582.00
-00003102722201179803760:1:994.00
-00003102722201179813461:1:5218.00
-00003102722203019000145:1:10050.00
-00003102722201179804440:1:6230.00
-00003102722201179808722:1:998.00
-00003102722201179803557:1:1000.00
-00003102722201179808247:1:5293.00
-00003102722201179801690:1:3825.00
-00003102722201179804431:1:1000.00
-00003102722201179804134:1:100.00
-00003102722201179801690:1:6728.00
-00003102722201179808722:1:998.00
-00003102722201179802879:1:1001.00
-00003102722201179803557:1:12000.00
-00003102722201179806711:1:5337.00
-00003102722201179808248:1:2387.00
-00003102722201179805357:1:1000.00
-00003102722201179805658:1:3882.00
-00003102722201179807963:1:6217.00
-00003102722201179807682:1:751.00
-00003102722201179807682:1:831.00
-00003102722201179815568:1:900.00
-00003102722201179804134:1:10700.00
-00003102722201179807682:1:933.00
-00003102722201179800475:1:135.00
-00003102722201179808248:1:4873.00
-00003102722201179804705:1:3550.00
-00003102722201179807682:1:758.00
-00003102722201179812556:1:1001.00
-00003102722201179804263:1:15640.00
-00003102722201179807963:1:14527.00
-00003102722201179804263:1:4665.00
-00003102722201179807414:1:4519.00
-00003102722201179808131:1:1000.00
-00003102722201179808471:1:1000.00
-00003102722201179803957:1:1000.00
-00003102722201179818929:1:1000.00
-00003102722201179808586:1:33808.00
-00003102722201179818705:1:4563.00
-00003102722201179803772:1:1050.00
-00003102722201179806715:1:2352.00
-00003102722201179803152:1:998.00
-00003102722201179811092:1:5513.00
-00003102722201179808550:1:7231.00
-00003102722201179812151:1:1000.00
-00003102722201179815568:1:750.00
-00003102722201179808550:1:6234.00
-00003102722201179803003:1:860.00
-00003102722201179818663:1:1000.00
-00003102722201179803733:1:979.00
-00003102722201179812102:1:5318.00
-00003102722201179803980:1:8500.00
-00003102722201179802671:1:1985.00
-00003102722201179803819:1:1000.00
-00003102722201179803905:1:9779.00
-00003102722201179808221:1:2158.00
-00003102722201179807450:1:8156.00
-00003102722201179803979:1:1000.00
-00003102722203019003960:1:1000.00
-00003102722201179806256:1:1000.00
-00003102722201179804727:1:963.00
-00003102722201179807095:1:3033.00
-00003102722201179807095:1:3027.00
-00003102722201179812105:1:900.00
-00003102722201179809196:1:10963.00
-00003102722201179801703:1:10.00
-00003102722201179808486:1:50.00
-00003102722201179803783:1:1000.00
-00003102722203019003960:1:11000.00
-00003102722201179809105:1:2480.00
-00003102722201179808587:1:100.00
-00003102722201179808395:1:1000.00
-00003102722201179803003:1:1000.00
-00003102722201179801703:1:1000.00
-00003102722201179802346:1:1112.00
-00003102722201179808486:1:1126.00
-00003102722201179803601:1:3540.00
-00003102722201179808592:1:3226.00
-00003102722201179814233:1:1000.00
-00003102722201179817362:1:1094.00
-00003102722201179801382:1:1000.00
-00003102722201179815568:1:850.00
-00003102722201179803964:1:6282.00
-00003102722201179803237:1:1359.00
-00003102722201179803417:1:1100.00
-00003102722201179803919:1:1350.00
-00003102722201179811306:1:3909.00
-00003102722201179803237:1:14726.00
-00003102722201179801116:1:1020.00
-00003102722201179801656:1:5900.00
-00003102722201179803919:1:1570.00
-00003102722201179809152:1:1000.00
-00003102722201179805023:1:3580.00
-00003102722201179806105:1:3566.00
-00003102722201179805983:1:986.00
-00003102722201179805023:1:5280.00
-00003102722201179803919:1:1060.00
-00003102722201179814523:1:129.00
-00003102722201179807306:1:2108.00
-00003102722201179807414:1:4639.00
-00003102722201179806776:1:17751.00
-00003102722201179814523:1:113.00
-00003102722201179803004:1:2000.00
-00003102722201179814523:1:9309.00
-00003102722201179803155:1:9548.00
-00003102722201179803941:1:8000.00
-00003102722201179814523:1:4283.00
-00003102722201179801709:1:15609.70
-00003102722201179808576:1:10.00
-00003102722201179815568:1:750.00
-00003102722201179803941:1:2000.00
-00003102722201179803155:1:25480.00
-00003102722201179808732:1:10.00
-00003102722201179803733:1:996.00
-00003102722201179808646:1:990.00
-00003102722201179803941:1:859.00
-00003102722201179804276:1:1000.00
-00003102722201179808732:1:990.00
-00003102722201179803155:1:19560.00
-00003102722201179814232:1:1000.00
-00003102722201179810201:1:1000.00
-00003102722201179805428:1:4200.00
-00003102722201179818664:1:1000.00
-00003102722201179814523:1:623.00
-00003102722201179814523:1:983.00
-00003102722201179803819:1:998.00
-00003102722201179815568:1:900.00
-00003102722201179801004:1:1000.00
-00003102722201179803004:1:101.00
-00003102722201179809152:1:356.00
-00003102722201179802710:1:300.00
-00003102722201179810201:1:1296.00
-00003102722201179811313:1:1965.00
-00003102722201179803004:1:101.00
-00003102722201179812071:1:999.00
-00003102722201179810201:1:1027.00
-00003102722201179812084:1:1000.00
-00003102722201179808646:1:980.00
-00003102722201179812071:1:998.00
-00003102722201179803003:1:1000.00
-00003102722201179801004:1:1000.00
-00003102722201179801632:1:80.00
-00003102722201179811313:1:1673.00
-00003102722201179808576:1:1000.00
-00003102722201179805426:1:9700.00
-00003102722201179811313:1:1575.00
-00003102722201179809152:1:210.00
-00003102722201179809145:1:10.00
-00003102722201179812206:1:3000.00
-00003102722201179803527:1:3895.00
-00003102722201179811313:1:887.50
-00003102722201179812071:1:997.00
-00003102722201179817866:1:1100.00
-00003102722201179818846:1:1000.00
-00003102722201179812084:1:988.00
-00003102722201179801004:1:1000.00
-00003102722201179812084:1:998.00
-00003102722201179815587:1:3035.00
-00003102722201179803819:1:998.00
-00003102722201179809145:1:1000.00
-00003102722201179812084:1:998.00
-00003102722201179801588:1:13580.00
-00003102722201179812084:1:996.00
-00003102722201179812084:1:998.00
-00003102722201179815587:1:4325.00
-00003102722201179812084:1:998.00
-00003102722201179803819:1:998.00
-00003102722201179812071:1:997.00
-00003102722201179809145:1:100.00
-00003102722201179812084:1:998.00
-00003102722201179818846:1:653.00
-00003102722201179812084:1:998.00
-00003102722201179812084:1:998.00
-00003102722201179802689:1:3271.00
-00003102722201179802689:1:3271.00
-00003102722201179812084:1:230.00
-00003102722201179802689:1:3783.00
-00003102722201179804290:1:816.00
-00003102722201179818972:1:873.00
-00003102722201179803819:1:998.00
-00003102722201179804290:1:850.00
-00003102722201179818649:1:1005.00
-00003102722201179808110:1:4900.00
-00003102722201179806961:1:8100.00
-00003102722201179801588:1:16220.00
-00003102722201179816177:1:6850.00
-00003102722201179811225:1:3900.00
-00003102722201179806709:1:2585.80
-00003102722201179806709:1:1966.00
-00003102722201179818680:1:1000.00
-00003102722201179806709:1:1846.00
-00003102722201179803819:1:991.00
-00003102722201179800486:1:5773.00
-00003102722201179806709:1:6325.00
-00003102722201179806709:1:1148.00
-00003102722201179812138:1:1000.00
-00003102722201179806709:1:2655.00
-00003102722201179808823:1:4288.00
-00003102722201179806709:1:3155.00
-00003102722201179808110:1:4990.00
-00003102722201179806709:1:1988.00
-00003102722201179808823:1:4698.00
-00003102722201179806709:1:1658.00
-00003102722201179806709:1:1865.00
-00003102722201179806709:1:895.00
-00003102722201179803601:1:1250.00
-00003102722201179800486:1:964.00
-00003102722201179800486:1:5133.00
-00003102722201179803832:1:3300.00
-00003102722201179815568:1:900.00
-00003102722201179815568:1:900.00
-00003102722201179818650:1:1050.00
-00003102722201179817362:1:822.35
-00003102722201179818964:1:15083.00
-00003102722201179808766:1:1000.00
-00003102722201179806969:1:2480.00
-00003102722203019000113:1:1000.00
-00003102722201179815568:1:5000.00
-00003102722201179808977:1:1000.00
-00003102722201179818650:1:100.00
-00003102722201179803819:1:998.00
-00003102722201179818956:1:8800.00
-00003102722201179815568:1:3000.00
-00003102722201179806822:1:2573.00
-00003102722201179805658:1:4282.00
-00003102722201179804244:1:997.00
-00003102722201179808338:1:5728.00
-00003102722201179815568:1:1200.00
-00003102722201179808643:1:8599.00
-00003102722201179804244:1:347.00
-00003102722201179817718:1:1000.00
-00003102722201179803565:1:1000.00
-00003102722201179804244:1:973.00
-00003102722201179803595:1:1008.00
-00003102722201179804242:1:1000.00
-00003102722201179818964:1:3705.00
-00003102722201179803558:1:1000.00
-00003102722201179817781:1:1025.00
-00003102722201179803915:1:10000.00
-00003102722201179807414:1:4533.00
-00003102722201179804441:1:1000.00
-00003102722201179805428:1:4800.00
-00003102722201179817709:1:1100.00
-00003102722201179801633:1:4550.00
-00003102722201179806800:1:3704.00
-00003102722201179806989:1:764.00
-00003102722201179804242:1:1980.00
-00003102722201179803595:1:11880.00
-00003102722201179805428:1:3800.00
-00003102722201179817783:1:1000.00
-00003102722201179807094:1:5872.00
-00003102722201179808110:1:10.00
-00003102722201179812138:1:1000.00
-00003102722201179805658:1:5395.00
-00003102722201179808072:1:4236.00
-00003102722201179808855:1:1000.00
-00003102722201179812553:1:1010.00
-00003102722201179803819:1:998.00
-00003102722201179808871:1:32393.00
-00003102722201179811308:1:7705.00
-00003102722201179808571:1:10.00
-00003102722201179808571:1:1000.00
-00003102722201179803595:1:10988.00
-00003102722201179817718:1:10000.00
-00003102722201179802193:1:962.00
-00003102722201179802193:1:994.00
-00003102722201179807969:1:1160.00
-00003102722201179813147:1:4985.00
-00003102722201179813935:1:1299.00
-00003102722201179812068:1:4988.00
-00003102722201179806762:1:1586.00
-00003102722201179815568:1:10000.00
-00003102722201179808952:1:8980.00
-00003102722201179808722:1:2980.00
-00003102722201179808498:1:1022.00
-00003102722201179803854:1:1200.00
-00003102722203019000120:1:1000.00
-00003102722201179812068:1:4999.00
-00003102722203019003757:1:1000.00
-00003102722201179812068:1:999.00
-00003102722201179818981:1:1896.00
-00003102722201179809101:1:5387.00
-00003102722201179812068:1:999.00
-00003102722201179808722:1:1000.00
-00003102722201179805156:1:1100.00
-00003102722201179818642:1:1005.00
-00003102722201179818981:1:1059.00
-00003102722201179803804:1:998.00
-00003102722201179809047:1:3500.00
-00003102722201179814765:1:1000.00
-00003102722201179806765:1:5780.00
-00003102722201179801843:1:1264.00
-00003102722201179807939:1:1000.00
-00003102722201179805928:1:983.00
-00003102722201179801843:1:2264.00
-00003102722201179808952:1:5651.00
-00003102722201179803804:1:998.00
-00003102722201179813966:1:1000.00
-00003102722203019003947:1:1328.00
-00003102722201179805190:1:5254.00
-00003102722201179813933:1:1995.00
-00003102722201179803943:1:1000.00
-00003102722201179803943:1:999.00
-00003102722201179818929:1:1000.00
-00003102722201179805190:1:4255.00
-00003102722201179805845:1:1000.00
-00003102722201179800491:1:200.00
-00003102722201179800491:1:12150.00
-00003102722201179804157:1:1150.00
-00003102722201179803804:1:998.00
-00003102722201179802671:1:1595.80
-00003102722201179803986:1:1000.00
-00003102722201179805845:1:10000.00
-00003102722201179808934:1:900.00
-00003102722203019003947:1:1688.00
-00003102722201179808934:1:960.00
-00003102722201179803804:1:865.00
-00003102722201179804287:1:1364.00
-00003102722201179803736:1:1000.00
-00003102722201179803792:1:2400.00
-00003102722201179805846:1:1000.00
-00003102722201179803804:1:865.00
-00003102722201179802693:1:1000.00
-00003102722201179803568:1:387.00
-00003102722201179803804:1:865.00
-00003102722201179803441:1:7596.80
-00003102722201179806724:1:1000.00
-00003102722201179815588:1:14600.00
-00003102722201179806762:1:4342.00
-00003102722201179809128:1:825.00
-00003102722201179803986:1:950.00
-00003102722201179805438:1:500.00
-00003102722201179813904:1:1000.00
-00003102722201179818962:1:2000.00
-00003102722201179818624:1:21360.00
-00003102722201179803804:1:350.00
-00003102722201179800790:1:2996.00
-00003102722201179812291:1:850.00
-00003102722201179800790:1:2879.00
-00003102722201179800462:1:100.00
-00003102722201179801825:1:895.00
-00003102722201179808215:1:1005.00
-00003102722201179818962:1:500.00
-00003102722201179812553:1:4860.80
-00003102722201179802681:1:1806.00
-00003102722201179803819:1:998.00
-00003102722201179811337:1:1000.00
-00003102722201179812128:1:1000.00
-00003102722201179803819:1:998.00
-00003102722201179802302:1:5400.00
-00003102722201179803819:1:998.00
-00003102722201179808934:1:5000.00
-00003102722201179803986:1:950.00
-00003102722201179803819:1:998.00
-00003102722201179818734:1:1000.00
-00003102722201179812553:1:20900.80
-00003102722201179808876:1:3583.00
-00003102722201179808219:1:1000.00
-00003102722201179816187:1:10150.00
-00003102722201179808876:1:4572.00
-00003102722201179805048:1:980.00
-00003102722201179805059:1:1100.00
-00003102722201179808876:1:5937.00
-00003102722201179808473:1:25153.00
-00003102722203019003755:1:1000.00
-00003102722201179801150:1:3513.00
-00003102722201179808876:1:3563.00
-00003102722201179803831:1:3250.00
-00003102722201179804290:1:962.00
-00003102722201179801710:1:1201.00
-00003102722201179812165:1:1000.00
-00003102722201179803735:1:1000.00
-00003102722201179804727:1:1488.00
-00003102722201179803735:1:3000.00
-00003102722201179803735:1:2000.00
-00003102722201179818647:1:1005.00
-00003102722201179808934:1:860.00
-00003102722201179811338:1:1052.00
-00003102722201179809134:1:21077.00
-00003102722201179808934:1:910.00
-00003102722201179803779:1:7000.00
-00003102722201179801792:1:19000.00
-00003102722201179802051:1:1260.00
-00003102722201179817866:1:996.00
-00003102722201179801792:1:19000.00
-00003102722201179817866:1:996.00
-00003102722201179800486:1:5012.00
-00003102722201179801792:1:18000.00
-00003102722201179801122:1:1070.00
-00003102722201179813906:1:4999.00
-00003102722201179800462:1:1000.00
-00003102722201179806466:1:5003.00
-00003102722201179801792:1:18000.00
-00003102722201179806326:1:3971.00
-00003102722201179803819:1:998.00
-00003102722201179806326:1:3931.00
-00003102722201179801792:1:18000.00
-00003102722201179802051:1:2617.00
-00003102722201179803819:1:998.00
-00003102722201179801122:1:2000.00
-00003102722201179802051:1:3647.00
-00003102722201179804727:1:980.00
-00003102722201179806466:1:5102.00
-00003102722201179802051:1:1637.00
-00003102722201179804727:1:510.00
-00003102722201179800870:1:14130.00
-00003102722201179807840:1:10.00
-00003102722201179802051:1:987.00
-00003102722201179802051:1:3670.00
-00003102722201179819018:1:1000.00
-00003102722201179802051:1:967.00
-00003102722201179804266:1:3635.00
-00003102722201179804727:1:620.00
-00003102722201179805157:1:10.50
-00003102722201179802051:1:1057.00
-00003102722201179817866:1:996.00
-00003102722201179802051:1:1107.00
-00003102722201179805157:1:1050.00
-00003102722201179807288:1:2486.00
-00003102722201179803735:1:6780.00
-00003102722201179813170:1:1865.00
-00003102722201179811224:1:783.00
-00003102722203019000455:1:24998.00
-00003102722201179817695:1:1000.00
-00003102722201179807840:1:10010.00
-00003102722201179803804:1:787.00
-00003102722201179803804:1:787.00
-00003102722201179803042:1:304.00
-00003102722201179808476:1:2436.00
-00003102722201179803804:1:217.00
-00003102722201179818740:1:1000.00
-00003102722201179805846:1:10000.00
-00003102722201179802048:1:1000.00
-00003102722201179803804:1:995.00
-00003102722201179808247:1:1764.00
-00003102722201179804266:1:2533.00
-00003102722201179803804:1:698.00
-00003102722201179808392:1:990.00
-00003102722201179808247:1:3974.00
-00003102722201179807436:1:2469.00
-00003102722201179800462:1:1000.00
-00003102722201179807436:1:1986.00
-00003102722201179807436:1:2956.00
-00003102722201179811147:1:5664.00
-00003102722201179812103:1:1000.00
-00003102722201179814211:1:458.00
-00003102722201179818705:1:3695.00
-00003102722201179814211:1:432.00
-00003102722201179806229:1:657.00
-00003102722201179801004:1:984.00
-00003102722201179811419:1:7225.00
-00003102722201179801004:1:988.00
-00003102722201179802038:1:2851.00
-00003102722201179809147:1:10.25
-00003102722201179817362:1:2157.00
-00003102722201179804221:1:1000.00
-00003102722201179802679:1:11.11
-00003102722201179818612:1:7650.00
-00003102722201179804727:1:2970.00
-00003102722203019003752:1:1000.00
-00003102722201179800462:1:4225.00
-00003102722201179801004:1:1000.00
-00003102722201179807288:1:6000.00
-00003102722201179809147:1:998.00
-00003102722201179808423:1:1020.00
-00003102722201179806954:1:9006.00
-00003102722201179803979:1:958.00
-00003102722201179807414:1:4594.00
-00003102722201179801004:1:395.00
-00003102722201179806487:1:10.00
-00003102722201179806715:1:2291.00
-00003102722201179809075:1:33.56
-00003102722201179802651:1:992.00
-00003102722201179802651:1:992.00
-00003102722201179809450:1:1000.00
-00003102722201179802651:1:985.00
-00003102722201179804442:1:1000.00
-00003102722201179809075:1:3356.00
-00003102722201179808590:1:810.00
-00003102722201179804791:1:1016.00
-00003102722201179808294:1:8000.00
-00003102722203019003767:1:1000.00
-00003102722201179809124:1:7950.00
-00003102722201179802326:1:10.00
-00003102722201179803760:1:855.00
-00003102722201179803760:1:850.00
-00003102722201179803261:1:12100.00
-00003102722201179802679:1:1001.00
-00003102722201179817477:1:1000.00
-00003102722201179802326:1:1000.00
-00003102722201179812293:1:1000.00
-00003102722201179803819:1:998.00
-00003102722201179803735:1:3220.50
-00003102722201179803761:1:953.00
-00003102722201179804727:1:1680.00
-00003102722201179806229:1:644.00
-00003102722201179812293:1:100.00
-00003102722201179814220:1:1655.00
-00003102722201179816166:1:1200.00
-00003102722201179805374:1:5200.00
-00003102722201179808200:1:4376.00
-00003102722201179809034:1:1090.00
-00003102722201179808592:1:2830.00
-00003102722201179804244:1:1931.00
-00003102722201179809452:1:5180.00
-00003102722201179804486:1:1000.00
-00003102722201179806258:1:5885.00
-00003102722201179804727:1:2374.00
-00003102722201179802630:1:15535.00
-00003102722201179803819:1:515.00
-00003102722201179803185:1:3625.00
-00003102722201179803819:1:998.00
-00003102722201179814220:1:6284.00
-00003102722201179815555:1:1000.00
-00003102722201179803819:1:998.00
-00003102722203019003858:1:1110.00
-00003102722201179803258:1:2301.00
-00003102722201179804244:1:1000.00
-00003102722201179803679:1:1299.00
-00003102722203019003858:1:200.00
-00003102722201179803258:1:17943.00
-00003102722201179804266:1:4531.00
-00003102722201179804266:1:6434.00
-00003102722201179804727:1:865.00
-00003102722201179805059:1:7150.00
-00003102722201179814220:1:4784.00
-00003102722201179808614:1:1000.00
-00003102722201179801588:1:19985.00
-00003102722201179803679:1:8999.00
-00003102722201179809459:1:1000.00
-00003102722201179803042:1:443.00
-00003102722201179811419:1:6470.00
-00003102722201179808614:1:1000.00
-00003102722203019003866:1:120.00
-00003102722201179817389:1:8941.00
-00003102722201179807303:1:1000.00
-00003102722201179803708:1:1000.00
-00003102722201179804727:1:2610.00
-00003102722201179814220:1:2224.00
-00003102722201179803986:1:963.00
-00003102722201179803986:1:939.00
-00003102722201179812112:1:1000.00
-00003102722201179806263:1:992.00
-00003102722201179801843:1:736.00
-00003102722201179801843:1:736.00
-00003102722201179801810:1:5632.00
-00003102722203019000696:1:1000.00
-00003102722201179810250:1:1000.00
-00003102722201179810250:1:985.00
-00003102722201179812112:1:15999.00
-00003102722201179809049:1:1000.06
-00003102722201179808870:1:2000.00
-00003102722201179808558:1:30000.00
-00003102722201179817362:1:1749.00
-00003102722201179809049:1:4600.00
-00003102722201179818950:1:988.00
-00003102722201179809498:1:1110.00
-00003102722201179804244:1:2965.00
-00003102722201179806725:1:1000.00
-00003102722201179808132:1:1000.00
-00003102722201179802621:1:1000.00
-00003102722201179813936:1:1050.00
-00003102722201179802621:1:12315.00
-00003102722201179801753:1:1000.00
-00003102722203019003865:1:200.00
-00003102722203019003865:1:1008.00
-00003102722201179803764:1:1000.00
-00003102722201179801753:1:1000.00
-00003102722201179817866:1:993.00
-00003102722203019004050:1:22000.00
-00003102722201179810251:1:1000.00
-00003102722201179817866:1:992.00
-00003102722201179817866:1:992.00
-00003102722201179806853:1:1000.00
-00003102722201179808868:1:999.00
-00003102722201179808868:1:999.00
-00003102722201179809091:1:9863.00
-00003102722201179808858:1:8880.00
-00003102722201179803934:1:1000.00
-00003102722201179807414:1:1273.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179814483:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179808216:1:1008.00
-00003102722201179818995:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179808252:1:1001.00
-00003102722201179803986:1:975.00
-00003102722201179803934:1:1000.00
-00003102722201179814217:1:20.35
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179814217:1:653.00
-00003102722201179803237:1:14592.00
-00003102722201179803934:1:1000.00
-00003102722201179818995:1:39000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179818950:1:1675.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179806409:1:3980.00
-00003102722201179803934:1:800.00
-00003102722201179803934:1:1000.00
-00003102722201179809188:1:1085.00
-00003102722201179803934:1:1000.00
-00003102722201179818995:1:7600.00
-00003102722201179806409:1:1380.00
-00003102722201179803934:1:1000.00
-00003102722201179806409:1:1850.00
-00003102722201179803934:1:1000.00
-00003102722201179809188:1:10445.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179809188:1:8353.00
-00003102722201179803934:1:1000.00
-00003102722201179806409:1:298.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179800675:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179818951:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179818951:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179818951:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179814217:1:2035.00
-00003102722201179811419:1:5550.00
-00003102722201179806312:1:10200.00
-00003102722201179810252:1:1000.00
-00003102722201179803927:1:999.00
-00003102722201179803927:1:6099.00
-00003102722201179803184:1:202.00
-00003102722201179807331:1:1111.00
-00003102722201179806256:1:999.00
-00003102722203019003756:1:1006.00
-00003102722203019003756:1:3695.00
-00003102722201179803927:1:6999.00
-00003102722201179803927:1:6085.00
-00003102722201179806312:1:999.00
-00003102722201179800671:1:9852.00
-00003102722201179808911:1:15000.00
-00003102722201179806312:1:1000.00
-00003102722201179808911:1:5000.00
-00003102722201179808724:1:1000.00
-00003102722201179808724:1:6500.00
-00003102722201179808724:1:2900.00
-00003102722201179806312:1:1000.00
-00003102722201179817866:1:998.00
-00003102722201179817866:1:998.00
-00003102722201179817866:1:998.00
-00003102722201179806312:1:1000.00
-00003102722203019003751:1:3529.00
-00003102722201179810253:1:1000.00
-00003102722203019003751:1:2731.00
-00003102722203019003751:1:6317.00
-00003102722203019003751:1:6739.00
-00003102722201179807642:1:8754.00
-00003102722201179817866:1:999.00
-00003102722201179817866:1:999.00
-00003102722201179817866:1:999.00
-00003102722201179803986:1:950.00
-00003102722201179808813:1:1012.00
-00003102722201179811307:1:2300.00
-00003102722201179808813:1:4983.00
-00003102722201179808813:1:6002.11
-00003102722201179808813:1:5890.01
-00003102722201179808813:1:5899.00
-00003102722201179817389:1:794.00
-00003102722201179808813:1:5911.00
-00003102722201179808813:1:5875.00
-00003102722201179808813:1:5876.00
-00003102722201179808813:1:5866.00
-00003102722201179810387:1:1000.00
-00003102722201179802308:1:1000.00
-00003102722201179809129:1:8700.00
-00003102722201179806229:1:2440.00
-00003102722201179803603:1:2856.00
-00003102722201179803603:1:4725.00
-00003102722201179818667:1:7605.00
-00003102722201179818920:1:4200.00
-00003102722201179808903:1:1005.00
-00003102722201179812464:1:998.00
-00003102722201179805428:1:6900.00
-00003102722201179803790:1:1000.00
-00003102722201179818751:1:1000.00
-00003102722201179818964:1:963.00
-00003102722201179806229:1:657.00
-00003102722201179810251:1:1000.00
-00003102722201179803790:1:1000.00
-00003102722201179806229:1:999.99
-00003102722201179818964:1:792.00
-00003102722201179802405:1:4525.00
-00003102722201179806466:1:2005.00
-00003102722201179803935:1:5998.00
-00003102722201179808240:1:890.00
-00003102722201179803935:1:2998.00
-00003102722201179805421:1:100.00
-00003102722201179811123:1:1050.00
-00003102722201179803761:1:861.00
-00003102722201179812151:1:914.00
-00003102722201179803174:1:1000.00
-00003102722201179818964:1:781.00
-00003102722201179802739:1:4998.50
-00003102722201179802742:1:1056.00
-00003102722201179818656:1:1050.00
-00003102722201179805428:1:10000.00
-00003102722201179818656:1:8950.00
-00003102722201179802742:1:5031.00
-00003102722201179818929:1:995.00
-00003102722201179819003:1:1000.00
-00003102722201179807303:1:15.00
-00003102722201179803819:1:998.00
-00003102722201179807303:1:25.00
-00003102722201179807303:1:20.00
-00003102722201179803901:1:9523.00
-00003102722201179803819:1:998.00
-00003102722201179812551:1:9000.00
-00003102722201179803819:1:998.00
-00003102722201179808862:1:5620.00
-00003102722201179808862:1:12300.00
-00003102722201179803819:1:998.00
-00003102722201179804284:1:1000.00
-00003102722201179808476:1:2262.00
-00003102722201179803596:1:1580.00
-00003102722201179815794:1:1000.00
-00003102722201179803819:1:998.00
-00003102722201179803238:1:1000.00
-00003102722201179814231:1:1000.00
-00003102722201179809087:1:3400.00
-00003102722201179803819:1:998.00
-00003102722201179805928:1:4958.00
-00003102722201179814231:1:2100.00
-00003102722201179804246:1:1000.00
-00003102722201179804715:1:4200.00
-00003102722203019000455:1:17001.00
-00003102722201179804246:1:986.00
-00003102722201179819003:1:100.00
-00003102722201179803020:1:860.00
-00003102722201179803761:1:13987.00
-00003102722201179804486:1:2498.00
-00003102722201179803759:1:1000.00
-00003102722201179808393:1:810.00
-00003102722201179817389:1:7634.00
-00003102722201179815790:1:1000.00
-00003102722201179812165:1:985.00
-00003102722201179818606:1:26810.00
-00003102722201179803500:1:1100.00
-00003102722201179818606:1:25020.00
-00003102722201179803761:1:233.00
-00003102722201179803789:1:2500.00
-00003102722201179815588:1:18000.00
-00003102722201179817866:1:991.00
-00003102722201179803223:1:1080.00
-00003102722201179817866:1:991.00
-00003102722201179817866:1:991.00
-00003102722201179806979:1:9500.20
-00003102722201179808498:1:12456.00
-00003102722201179803042:1:211.00
-00003102722201179803223:1:950.00
-00003102722201179803221:1:658.50
-00003102722201179812150:1:8614.00
-00003102722201179803221:1:986.60
-00003102722201179807095:1:713.00
-00003102722201179818929:1:990.00
-00003102722201179803452:1:1100.00
-00003102722201179807095:1:1431.00
-00003102722201179808990:1:1520.00
-00003102722201179812165:1:980.00
-00003102722201179809087:1:1860.00
-00003102722201179806323:1:1000.00
-00003102722201179808595:1:1995.00
-00003102722201179809101:1:897.00
-00003102722201179803759:1:999.00
-00003102722201179801018:1:1055.00
-00003102722201179808473:1:13520.00
-00003102722201179808641:1:999.90
-00003102722201179806988:1:3250.00
-00003102722201179812209:1:998.00
-00003102722201179808473:1:14262.00
-00003102722201179807250:1:300.00
-00003102722201179803979:1:360.00
-00003102722201179813974:1:1135.00
-00003102722201179806323:1:5000.00
-00003102722201179807250:1:1860.00
-00003102722201179814513:1:861.00
-00003102722201179806240:1:1000.00
-00003102722201179810251:1:999.00
-00003102722201179807303:1:28.00
-00003102722201179805152:1:685.00
-00003102722201179807250:1:780.00
-00003102722201179806323:1:15000.00
-00003102722203019003755:1:1996.00
-00003102722201179805421:1:1000.00
-00003102722201179806969:1:2510.00
-00003102722201179818658:1:1050.00
-00003102722201179806323:1:10000.00
-00003102722201179818951:1:1000.00
-00003102722201179807904:1:1520.00
-00003102722201179810251:1:999.00
-00003102722201179818951:1:1000.00
-00003102722201179803508:1:1205.00
-00003102722201179806700:1:2999.00
-00003102722201179806700:1:1328.00
-00003102722201179803186:1:5086.00
-00003102722201179818658:1:970.00
-00003102722201179809172:1:1985.00
-00003102722201179803186:1:3931.00
-00003102722201179812009:1:100.00
-00003102722201179817450:1:1000.00
-00003102722201179818951:1:17000.00
-00003102722201179816189:1:1528.00
-00003102722201179812009:1:36000.00
-00003102722201179804203:1:1000.00
-00003102722201179803020:1:750.00
-00003102722201179803819:1:998.00
-00003102722201179803759:1:999.00
-00003102722201179803934:1:1000.00
-00003102722201179808423:1:5000.00
-00003102722201179803819:1:996.00
-00003102722201179803934:1:1000.00
-00003102722201179808244:1:4650.00
-00003102722201179803934:1:1000.00
-00003102722201179812282:1:796.00
-00003102722201179803934:1:1000.00
-00003102722203019000771:1:1000.00
-00003102722201179812009:1:36000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722203019003760:1:1256.00
-00003102722201179806715:1:963.00
-00003102722201179808588:1:1000.00
-00003102722201179801150:1:3127.00
-00003102722201179803759:1:999.00
-00003102722201179818643:1:1000.00
-00003102722201179803842:1:5025.00
-00003102722201179803819:1:699.00
-00003102722201179803819:1:586.00
-00003102722201179810251:1:998.00
-00003102722201179803934:1:1000.00
-00003102722201179802693:1:15200.00
-00003102722201179803986:1:978.00
-00003102722201179803934:1:1000.00
-00003102722201179807978:1:1000.00
-00003102722201179811840:1:1003.00
-00003102722201179806258:1:5500.00
-00003102722201179803934:1:1000.00
-00003102722201179812150:1:6724.00
-00003102722201179803934:1:1000.00
-00003102722201179814140:1:1012.00
-00003102722201179810251:1:999.00
-00003102722201179803934:1:1000.00
-00003102722201179803249:1:3812.00
-00003102722201179814217:1:2698.79
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179804877:1:3986.00
-00003102722201179802027:1:20.00
-00003102722201179803934:1:1000.00
-00003102722201179804877:1:2796.00
-00003102722201179803934:1:1000.00
-00003102722201179802689:1:3518.00
-00003102722201179804877:1:2369.00
-00003102722201179803900:1:9600.00
-00003102722201179803733:1:920.00
-00003102722201179803986:1:935.00
-00003102722201179804877:1:2689.00
-00003102722203019000651:1:1000.00
-00003102722201179802689:1:3428.00
-00003102722201179802689:1:3427.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179817866:1:996.00
-00003102722201179806981:1:1032.00
-00003102722201179806981:1:842.00
-00003102722201179817866:1:996.00
-00003102722201179817866:1:993.00
-00003102722201179803900:1:1000.00
-00003102722201179804244:1:1000.00
-00003102722201179817866:1:993.00
-00003102722201179817362:1:2487.00
-00003102722201179804244:1:1500.00
-00003102722201179807095:1:1553.00
-00003102722201179805932:1:2350.00
-00003102722201179807970:1:1088.00
-00003102722201179817362:1:689.00
-00003102722201179817370:1:298.00
-00003102722201179805983:1:1642.00
-00003102722201179817362:1:854.00
-00003102722201179806105:1:1735.00
-00003102722203019003874:1:1090.00
-00003102722201179815552:1:3546.00
-00003102722201179805932:1:1983.00
-00003102722201179806232:1:1860.00
-00003102722201179815552:1:4869.00
-00003102722201179815552:1:3576.00
-00003102722201179804437:1:200.00
-00003102722201179805428:1:7700.00
-00003102722201179805434:1:2105.00
-00003102722201179802027:1:3980.00
-00003102722201179809452:1:9100.00
-00003102722201179801650:1:1000.00
-00003102722201179804243:1:4669.00
-00003102722201179803934:1:600.00
-00003102722201179812105:1:1000.00
-00003102722201179803934:1:1000.00
-00003102722201179803934:1:300.00
-00003102722203019003993:1:1289.00
-00003102722201179815706:1:1000.00
-00003102722201179804579:1:1000.00
-00003102722201179803596:1:3248.00
-00003102722201179817370:1:1000.00
-00003102722201179806765:1:9430.00
-00003102722201179802037:1:9360.00
-00003102722201179804776:1:1000.01
-00003102722201179807942:1:1000.00
-00003102722201179805155:1:12000.00
-00003102722201179817370:1:5259.00
-00003102722201179805155:1:32200.00
-00003102722201179811840:1:995.98
-00003102722201179800475:1:1077.00
-00003102722201179801650:1:1000.00
-00003102722201179804383:1:12352.22
-00003102722201179808939:1:83.00
-00003102722201179801650:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179812123:1:995.00
-00003102722201179805882:1:6680.00
-00003102722201179804776:1:4990.00
-00003102722201179805010:1:13650.00
-00003102722201179802644:1:1299.00
-00003102722201179808402:1:10.00
-00003102722201179813935:1:986.00
-00003102722201179803760:1:990.00
-00003102722201179802644:1:9999.00
-00003102722201179808941:1:1000.00
-00003102722201179805426:1:3600.00
-00003102722201179807645:1:4600.00
-00003102722201179803733:1:536.00
-00003102722201179805426:1:4800.00
-00003102722201179805428:1:5600.00
-00003102722201179808941:1:1000.00
-00003102722201179804246:1:987.00
-00003102722201179804246:1:986.00
-00003102722201179808941:1:1000.00
-00003102722201179801633:1:2830.00
-00003102722201179802405:1:2452.00
-00003102722201179801810:1:3582.00
-00003102722201179804246:1:985.00
-00003102722201179804776:1:6900.00
-00003102722201179803596:1:4005.00
-00003102722201179801600:1:2000.00
-00003102722201179804440:1:4367.00
-00003102722201179804440:1:5260.00
-00003102722201179801600:1:2000.00
-00003102722201179804440:1:3680.00
-00003102722201179804440:1:4260.00
-00003102722201179818929:1:1000.00
-00003102722201179803833:1:1000.00
-00003102722201179803833:1:990.00
-00003102722201179811212:1:1000.00
-00003102722201179808646:1:990.00
-00003102722203019000450:1:1000.00
-00003102722201179812209:1:996.00
-00003102722201179808939:1:162.00
-00003102722201179808909:1:1000.00
-00003102722201179802713:1:1538.00
-00003102722201179805043:1:3841.00
-00003102722201179803833:1:980.00
-00003102722201179803833:1:900.00
-00003102722201179803833:1:900.00
-00003102722201179811142:1:1000.00
-00003102722201179803701:1:960.00
-00003102722201179818684:1:826.00
-00003102722201179807902:1:1206.00
-00003102722201179808142:1:932.72
-00003102722201179817866:1:994.00
-00003102722201179805428:1:3800.00
-00003102722201179817866:1:994.00
-00003102722201179808851:1:15500.00
-00003102722201179805428:1:6000.00
-00003102722201179809036:1:13624.00
-00003102722201179808402:1:1000.00
-00003102722201179817866:1:994.00
-00003102722201179801148:1:2000.00
-00003102722201179804287:1:352.00
-00003102722201179808473:1:21782.00
-00003102722201179815704:1:1000.00
-00003102722201179803859:1:1000.00
-00003102722201179808142:1:311.02
-00003102722201179803186:1:8311.00
-00003102722201179814247:1:1000.00
-00003102722201179818649:1:500.00
-00003102722201179812163:1:1000.00
-00003102722201179802405:1:4968.00
-00003102722201179803797:1:9685.00
-00003102722201179803797:1:4735.00
-00003102722201179805043:1:4133.00
-00003102722201179815578:1:1000.00
-00003102722201179807414:1:3566.00
-00003102722201179805043:1:3413.00
-00003102722201179804771:1:1000.10
-00003102722201179803046:1:1000.00
-00003102722201179803299:1:4270.00
-00003102722201179814247:1:10000.00
-00003102722201179803299:1:4270.00
-00003102722201179817866:1:994.00
-00003102722201179805043:1:993.00
-00003102722201179803299:1:7950.00
-00003102722201179803299:1:7950.00
-00003102722201179808087:1:5996.21
-00003102722201179803299:1:3870.00
-00003102722201179812112:1:15000.00
-00003102722201179803299:1:3870.00
-00003102722201179805928:1:1615.00
-00003102722201179808087:1:5896.21
-00003102722201179805928:1:3108.00
-00003102722201179818611:1:535.00
-00003102722201179805928:1:988.00
-00003102722201179811400:1:4978.00
-00003102722201179818611:1:936.00
-00003102722201179809452:1:4298.00
-00003102722201179806726:1:1000.00
-00003102722201179809452:1:3787.00
-00003102722201179807909:1:1011.00
-00003102722201179818611:1:1000.00
-00003102722201179807095:1:3993.00
-00003102722201179818611:1:1000.00
-00003102722201179809121:1:1010.00
-00003102722201179803683:1:2562.00
-00003102722201179808614:1:2000.00
-00003102722201179804792:1:2580.00
-00003102722203019000652:1:2100.00
-00003102722201179804242:1:18903.00
-00003102722201179806800:1:3664.00
-00003102722201179806208:1:2559.00
-00003102722203019003874:1:1085.00
-00003102722201179804242:1:978.00
-00003102722201179806728:1:350.00
-00003102722201179801184:1:5600.00
-00003102722201179809121:1:1130.00
-00003102722201179802722:1:20.00
-00003102722201179804242:1:980.00
-00003102722201179814211:1:2156.00
-00003102722201179803980:1:5700.00
-00003102722201179801184:1:15800.00
-00003102722201179804242:1:1000.00
-00003102722201179814211:1:235.00
-00003102722201179818663:1:1500.00
-00003102722201179809121:1:1460.00
-00003102722201179810266:1:1268.00
-00003102722201179803568:1:3795.00
-00003102722201179802722:1:1000.00
-00003102722201179803733:1:487.00
-00003102722201179810266:1:981.00
-00003102722201179806762:1:3253.00
-00003102722201179810201:1:1000.00
-00003102722201179810266:1:982.00
-00003102722201179814117:1:30050.00
-00003102722201179810266:1:983.00
-00003102722201179807643:1:3850.00
-00003102722201179810266:1:984.00
-00003102722201179810266:1:985.00
-00003102722201179808939:1:295.00
-00003102722201179813100:1:5983.00
-00003102722201179810266:1:986.00
-00003102722201179810266:1:987.00
-00003102722201179810266:1:988.00
-00003102722201179806989:1:687.00
-00003102722201179804638:1:9050.00
-00003102722201179817709:1:1000.00
-00003102722201179806807:1:1128.00
-00003102722201179809121:1:2110.00
-00003102722201179810266:1:989.00
-00003102722201179807956:1:508.00
-00003102722201179810266:1:28.00
-00003102722201179817709:1:1000.00
-00003102722201179817709:1:1000.00
-00003102722201179809000:1:2468.00
-00003102722201179817709:1:1000.00
-00003102722201179807409:1:1000.00
-00003102722201179801116:1:2550.00
-00003102722201179809000:1:3624.63
-00003102722201179809121:1:2100.00
-00003102722201179808761:1:1800.00
-00003102722201179812105:1:800.00
-00003102722201179803721:1:7000.00
-00003102722201179808474:1:10.00
-00003102722201179817491:1:1000.00
-00003102722201179809121:1:1150.00
-00003102722201179804449:1:998.00
-00003102722201179803683:1:1568.00
-00003102722201179808416:1:5350.00
-00003102722201179800483:1:205.00
-00003102722201179807903:1:1237.00
-00003102722201179809452:1:985.00
-00003102722201179808474:1:10.00
-00003102722201179818929:1:1000.00
-00003102722201179818606:1:26010.00
-00003102722201179818690:1:1000.00
-00003102722203019003755:1:2155.00
-00003102722201179804244:1:1599.00
-00003102722201179808054:1:10862.00
-00003102722201179818606:1:9863.00
-00003102722201179818663:1:2500.00
-00003102722201179809121:1:3510.00
-00003102722201179804244:1:900.00
-00003102722201179811842:1:1013.00
-00003102722201179809152:1:2590.00
-00003102722201179801810:1:3964.00
-00003102722201179801144:1:1000.00
-00003102722201179806256:1:981.00
-00003102722201179809128:1:228.00
-00003102722201179806822:1:1873.00
-00003102722201179803714:1:1000.00
-00003102722201179805428:1:7700.00
-00003102722201179801125:1:152.00
-00003102722201179809124:1:2750.00
-00003102722201179809124:1:5160.00
-00003102722201179818606:1:11030.00
-00003102722201179818700:1:1000.00
-00003102722201179802037:1:8840.00
-00003102722201179803760:1:966.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179804111:1:3062.00
-00003102722201179818993:1:1200.00
-00003102722201179801116:1:2540.00
-00003102722201179802036:1:5550.00
-00003102722201179818700:1:1000.00
-00003102722201179802036:1:1980.00
-00003102722201179808400:1:8632.00
-00003102722203019000146:1:2100.00
-00003102722203019000192:1:980.00
-00003102722201179804246:1:972.00
-00003102722201179818700:1:1000.00
-00003102722203019000146:1:5055.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722203019000146:1:3502.00
-00003102722201179809121:1:110.00
-00003102722201179804246:1:976.00
-00003102722201179818700:1:1000.00
-00003102722203019000146:1:4550.00
-00003102722203019000146:1:3505.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179808402:1:1200.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179807425:1:8973.00
-00003102722201179808402:1:1201.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722203019000192:1:6100.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179811842:1:3700.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179801140:1:33470.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179808078:1:1026.00
-00003102722201179818700:1:1000.00
-00003102722201179801668:1:1960.00
-00003102722201179808592:1:2690.00
-00003102722201179818700:1:1000.00
-00003102722201179808402:1:1150.00
-00003102722201179808762:1:1000.00
-00003102722201179805428:1:9000.00
-00003102722201179803527:1:1934.00
-00003102722201179808402:1:1200.00
-00003102722201179801668:1:1850.00
-00003102722201179801116:1:2520.00
-00003102722201179810251:1:999.00
-00003102722201179809090:1:1000.00
-00003102722201179808876:1:3228.00
-00003102722201179808402:1:168.00
-00003102722201179810251:1:1000.00
-00003102722201179808750:1:2370.00
-00003102722201179808876:1:1523.00
-00003102722201179818700:1:1000.00
-00003102722201179805428:1:950.00
-00003102722201179806702:1:1000.00
-00003102722201179808402:1:1178.00
-00003102722201179810251:1:999.00
-00003102722201179812282:1:4132.00
-00003102722201179818700:1:1000.00
-00003102722201179808402:1:1100.00
-00003102722201179818700:1:1000.00
-00003102722201179803154:1:8007.08
-00003102722201179806229:1:1577.00
-00003102722201179818700:1:1000.00
-00003102722201179810201:1:9455.00
-00003102722201179813899:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179806106:1:536.00
-00003102722201179804111:1:3059.00
-00003102722201179801843:1:814.00
-00003102722201179808402:1:1019.00
-00003102722201179806258:1:8555.00
-00003102722201179801843:1:814.00
-00003102722201179818700:1:1000.00
-00003102722201179817491:1:14537.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179808402:1:1106.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179808876:1:2963.00
-00003102722201179818700:1:1000.00
-00003102722201179803701:1:980.00
-00003102722201179808402:1:518.00
-00003102722201179806704:1:3698.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179811832:1:1000.00
-00003102722201179808876:1:4637.00
-00003102722201179808876:1:1537.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179805983:1:954.00
-00003102722201179803036:1:1089.00
-00003102722201179806105:1:652.00
-00003102722201179818700:1:1000.00
-00003102722201179808394:1:1010.00
-00003102722201179818793:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179807095:1:3551.00
-00003102722201179804766:1:1052.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179818700:1:1000.00
-00003102722201179805428:1:2750.00
-00003102722201179802627:1:8380.00
-00003102722201179805428:1:800.00
-00003102722201179802627:1:347.00
-00003102722201179808423:1:5000.00
-00003102722201179802627:1:120.00
-00003102722201179818700:1:1000.00
-00003102722201179804266:1:4372.00
-00003102722201179804266:1:1866.00
-00003102722201179803020:1:1309.00
-00003102722201179804241:1:1000.00
-00003102722201179807900:1:1124.00
-00003102722201179802193:1:962.00
-00003102722201179808763:1:1000.00
-00003102722201179802193:1:984.00
-00003102722201179809152:1:2530.02
-00003102722201179818684:1:536.00
-00003102722201179807900:1:1964.50
-00003102722201179808816:1:2985.00
-00003102722201179809152:1:1708.00
-00003102722201179817865:1:1100.00
-00003102722201179817492:1:1000.00
-00003102722201179804766:1:1103.20
-00003102722201179807414:1:3612.00
-00003102722201179802193:1:8462.00
-00003102722201179801680:1:18000.00
-00003102722201179814145:1:1000.00
-00003102722201179802689:1:6213.00
-00003102722201179802689:1:6213.00
-00003102722201179812386:1:1005.00
-00003102722201179802689:1:6312.00
-00003102722201179812165:1:1000.00
-00003102722201179812165:1:1000.00
-00003102722201179806805:1:1000.00
-00003102722201179812105:1:900.00
-00003102722201179811832:1:5500.00
-00003102722201179804767:1:5767.00
-00003102722201179803155:1:6417.00
-00003102722201179818751:1:10061.00
-00003102722201179814127:1:1000.00
-00003102722201179809152:1:230.00
-00003102722201179808075:1:9868.00
-00003102722203019000133:1:10.00
-00003102722201179807642:1:2338.00
-00003102722201179814145:1:8000.00
-00003102722201179807977:1:100.00
-00003102722201179812010:1:800.00
-00003102722203019000133:1:6000.00
-00003102722201179809121:1:2100.00
-00003102722201179806969:1:2480.00
-00003102722203019000133:1:10000.00
-00003102722201179818741:1:1000.00
-00003102722201179811131:1:11000.00
-00003102722201179814145:1:40000.00
-00003102722201179803714:1:3800.00
-00003102722201179803733:1:989.00
-00003102722201179805152:1:125.00
-00003102722201179800912:1:1000.00
-00003102722201179814483:1:29885.00
-00003102722201179803814:1:1000.00
-00003102722201179812166:1:15000.00
-00003102722201179801186:1:9250.00
-00003102722201179803943:1:999.00
-00003102722201179805428:1:2300.00
-00003102722201179815749:1:1000.00
-00003102722201179805428:1:2200.00
-00003102722201179803943:1:1000.00
-00003102722203019000133:1:2000.00
-00003102722201179803814:1:9200.00
-00003102722201179809121:1:3100.00
-00003102722203019000133:1:14003.08
-00003102722201179803154:1:3538.00
-00003102722201179806805:1:4522.00
-00003102722201179805428:1:2600.00
-00003102722201179808040:1:7800.00
-00003102722201179806805:1:4213.00
-00003102722201179808358:1:1020.00
-00003102722201179808040:1:3050.00
-00003102722201179805428:1:8000.00
-00003102722201179813147:1:4567.00
-00003102722201179808040:1:2080.90
-00003102722201179808641:1:999.90
-00003102722201179812549:1:10.00
-00003102722201179808040:1:1929.80
-00003102722201179804877:1:3796.00
-00003102722201179808040:1:2430.50
-00003102722201179804877:1:3869.00
-00003102722201179808040:1:8927.00
-00003102722201179804877:1:3869.00
-00003102722201179808761:1:3865.00
-00003102722201179807977:1:4000.00
-00003102722201179812549:1:749.00
-00003102722201179812285:1:2502.00
-00003102722201179813252:1:8814.00
-00003102722201179806800:1:3640.00
-00003102722201179811842:1:100.00
-00003102722201179806250:1:6000.00
-00003102722201179817865:1:10.00
-00003102722201179809145:1:1001.00
-00003102722201179817865:1:998.00
-00003102722201179803548:1:10.00
-00003102722201179814146:1:1000.00
-00003102722201179817865:1:999.00
-00003102722201179808293:1:400.00
-00003102722201179803548:1:14658.00
-00003102722201179812549:1:320.00
-00003102722201179809452:1:980.00
-00003102722201179815552:1:963.00
-00003102722201179805048:1:9860.00
-00003102722201179809121:1:3100.00
-00003102722201179817865:1:998.00
-00003102722201179809145:1:1800.00
-00003102722201179803793:1:6997.00
-00003102722201179815552:1:5693.00
-00003102722201179815552:1:4635.00
-00003102722201179811842:1:110.00
-00003102722201179815552:1:3963.00
-00003102722201179803601:1:2850.00
-00003102722201179808854:1:1000.00
-00003102722201179809121:1:2611.00
-00003102722201179803287:1:785.00
-00003102722201179811488:1:20.00
-00003102722201179800916:1:3500.00
-00003102722201179810251:1:1000.00
-00003102722201179809172:1:2010.00
-00003102722201179818611:1:988.00
-00003102722201179804628:1:1000.00
-00003102722201179818611:1:886.00
-00003102722203019000150:1:2000.00
-00003102722201179810251:1:999.00
-00003102722201179817851:1:1000.00
-00003102722201179818611:1:988.00
-00003102722201179804486:1:7500.00
-00003102722201179810251:1:1000.00
-00003102722201179818611:1:987.00
-00003102722201179809172:1:13.00
-00003102722201179805428:1:2650.00
-00003102722201179818611:1:988.00
-00003102722201179817851:1:3022.00
-00003102722201179800462:1:4980.99
-00003102722201179805428:1:5400.00
-00003102722201179804203:1:32400.00
-00003102722201179817851:1:8533.00
-00003102722201179810251:1:300.00
-00003102722201179808935:1:2798.00
-00003102722201179803499:1:15450.00
-00003102722201179811842:1:980.00
-00003102722201179811842:1:980.00
-00003102722201179804232:1:1000.00
-00003102722201179808553:1:4800.00
-00003102722201179804232:1:5700.00
-00003102722201179803733:1:996.00
-00003102722201179805434:1:2183.00
-00003102722201179817743:1:1100.00
-00003102722201179811832:1:1000.00
-00003102722201179811832:1:1000.00
-00003102722201179811832:1:1000.00
-00003102722201179803706:1:715.00
-00003102722201179808761:1:2896.00
-00003102722201179809090:1:9000.00
-00003102722201179811832:1:1000.00
-00003102722201179803499:1:1000.00
-00003102722201179803499:1:5000.00
-00003102722201179811212:1:10000.00
-00003102722201179811832:1:1000.00
-00003102722201179808868:1:999.00
-00003102722201179811832:1:1000.00
-00003102722201179809126:1:1398.00
-00003102722201179802315:1:865.00
-00003102722201179808949:1:9998.00
-00003102722201179806234:1:1001.00
-00003102722201179803945:1:996.00
-00003102722201179818662:1:2001.00
-00003102722201179806234:1:892.00
-00003102722201179803001:1:1000.00
-00003102722201179802027:1:9880.00
-00003102722201179811832:1:1000.00
-00003102722201179802647:1:5635.00
-00003102722201179812105:1:7500.00
-00003102722201179805428:1:3350.00
-00003102722201179805428:1:3600.00
-00003102722201179806765:1:5580.00
-00003102722201179800476:1:200.00
-00003102722201179801570:1:9983.00
-00003102722201179814457:1:1100.00
-00003102722201179806765:1:5490.00
-00003102722201179800476:1:600.00
-00003102722201179803819:1:1000.00
-00003102722201179811842:1:6488.00
-00003102722201179808816:1:1963.00
-00003102722201179808877:1:9500.00
-00003102722201179803596:1:3800.00
-00003102722201179803819:1:998.00
-00003102722201179805928:1:4988.00
-00003102722201179805190:1:5254.00
-00003102722201179817410:1:1100.00
-00003102722201179806727:1:1987.00
-00003102722201179801146:1:18185.00
-00003102722201179803819:1:998.00
-00003102722201179803819:1:998.00
-00003102722201179811315:1:1012.00
-00003102722201179803223:1:5680.00
-00003102722201179805190:1:2623.00
-00003102722201179804437:1:10000.00
-00003102722201179811315:1:1433.00
-00003102722201179803782:1:8380.90
-00003102722201179809452:1:859.00
-00003102722203019000183:1:100.00
-00003102722201179809452:1:948.00
-00003102722201179803223:1:1985.00
-00003102722201179807958:1:1000.00
-00003102722201179812150:1:6815.00
-00003102722201179804776:1:2699.80
-00003102722201179808939:1:851.00
-00003102722201179803061:1:4280.00
-00003102722203019000183:1:1000.00
-00003102722201179808248:1:2295.00
-00003102722201179803840:1:10000.00
-00003102722201179808400:1:1500.00
-00003102722201179805428:1:4000.00
-00003102722201179814163:1:1000.00
-00003102722201179809128:1:867.00
-00003102722201179809134:1:18770.00
-00003102722201179805190:1:5346.00
-00003102722201179811419:1:3550.00
-00003102722201179801004:1:934.00
-00003102722201179809134:1:7655.00
-00003102722201179818642:1:985.00
-00003102722201179801004:1:914.00
-00003102722201179806243:1:8467.00
-00003102722201179814234:1:1000.00
-00003102722201179802711:1:1000.00
-00003102722201179805428:1:7400.00
-00003102722201179808137:1:1000.00
-00003102722201179801004:1:984.00
-00003102722201179811349:1:1000.00
-00003102722201179811335:1:1005.00
-00003102722201179803685:1:2965.00
-00003102722201179814226:1:5500.00
-00003102722201179805434:1:5793.00
-00003102722201179803685:1:2386.00
-00003102722201179817865:1:998.00
-00003102722201179801112:1:1341.00
-00003102722201179803685:1:3125.00
-00003102722201179817865:1:500.00
-00003102722201179803685:1:3468.00
-00003102722201179806713:1:1307.00
-00003102722201179808137:1:1000.00
-00003102722201179806713:1:2984.00
-00003102722201179803714:1:5200.00
-00003102722201179800492:1:120.00
-00003102722201179806846:1:3541.00
-00003102722201179811463:1:300.00
-00003102722201179803042:1:4570.00
-00003102722201179803760:1:970.00
-00003102722201179811463:1:850.00
-00003102722201179819003:1:2000.00
-00003102722201179812282:1:2994.00
-00003102722201179818791:1:8892.00
-00003102722201179818742:1:1000.00
-00003102722201179805131:1:6250.00
-00003102722201179805131:1:8837.00
-00003102722201179804243:1:6788.00
-00003102722201179806229:1:1108.00
-00003102722201179808939:1:1837.00
-00003102722201179805131:1:8436.00
-00003102722201179818929:1:1000.00
-00003102722201179806229:1:288.00
-00003102722201179805131:1:7632.00
-00003102722201179806229:1:188.00
-00003102722201179803941:1:599.00
-00003102722203019003979:1:1000.00
-00003102722201179814226:1:38000.00
-00003102722201179803941:1:725.00
-00003102722201179809134:1:12077.00
-00003102722201179807967:1:1022.00
-00003102722201179803795:1:1000.00
-00003102722201179803941:1:530.00
-00003102722201179803464:1:1459.00
-00003102722203019003755:1:1875.00
-00003102722201179803979:1:660.00
-00003102722201179803759:1:999.00
-00003102722201179813974:1:1023.00
-00003102722201179801716:1:10.00
-00003102722201179800790:1:2987.00
-00003102722201179803819:1:998.00
-00003102722201179801716:1:1000.00
-00003102722201179803819:1:998.00
-00003102722201179800790:1:2997.00
-00003102722201179803819:1:996.00
-00003102722201179808115:1:1000.00
-00003102722201179806255:1:980.00
-00003102722201179804282:1:2680.00
-00003102722201179812150:1:300.00
-00003102722201179813933:1:998.00
-00003102722201179806925:1:1210.00
-00003102722201179802413:1:1000.00
-00003102722201179801792:1:16000.00
-00003102722201179801690:1:4885.00
-00003102722201179807968:1:1042.00
-00003102722201179812150:1:300.00
-00003102722201179801690:1:4725.00
-00003102722201179801792:1:16000.00
-00003102722201179811206:1:900.00
-00003102722201179815798:1:1000.00
-00003102722201179805434:1:3581.00
-00003102722201179809134:1:23373.00
-00003102722201179801792:1:6000.00
-00003102722201179803568:1:1795.00
-00003102722201179806241:1:3400.00
-00003102722201179803402:1:2515.00
-00003102722201179808980:1:4970.00
-00003102722201179802890:1:1000.00
-00003102722201179804052:1:1100.00
-00003102722201179812552:1:200.00
-00003102722201179807944:1:1000.00
-00003102722201179808592:1:4085.00
-00003102722201179812132:1:1000.00
-00003102722201179803957:1:9500.00
-00003102722201179802890:1:5000.00
-00003102722201179801696:1:15230.00
-00003102722201179811335:1:982.00
-00003102722201179814454:1:210.00
-00003102722201179806364:1:1000.00
-00003102722201179801716:1:90.00
-00003102722201179806765:1:6980.00
-00003102722201179814454:1:10100.00
-00003102722201179815551:1:13217.00
-00003102722201179801716:1:100.00
-00003102722201179801710:1:20018.00
-00003102722201179803939:1:5000.00
-00003102722201179802890:1:9865.00
-00003102722201179806241:1:3650.00
-00003102722201179815551:1:13271.00
-00003102722201179802890:1:9000.00
-00003102722201179811335:1:992.00
-00003102722201179811335:1:968.00
-00003102722201179803939:1:5000.00
-00003102722201179805437:1:1000.00
-00003102722201179818791:1:13700.00
-00003102722201179808949:1:9780.00
-00003102722201179806229:1:507.00
-00003102722201179803761:1:751.00
-00003102722201179808863:1:79.83
-00003102722201179805421:1:3233.00
-00003102722201179805421:1:2323.00
-00003102722201179812209:1:990.00
-00003102722201179815580:1:1000.00
-00003102722201179812209:1:991.00
-00003102722201179803797:1:11905.00
-00003102722201179806874:1:3421.00
-00003102722201179818964:1:13582.00
-00003102722201179803448:1:100.00
-00003102722201179802627:1:3767.00
-00003102722201179803797:1:1472.00
-00003102722201179813830:1:1000.00
-00003102722201179802627:1:1944.00
-00003102722201179803759:1:999.00
-00003102722203019003947:1:1705.00
-00003102722201179803797:1:523.00
-00003102722201179811842:1:3567.00
-00003102722203019000467:1:1010.00
-00003102722201179812773:1:1000.00
-00003102722201179802724:1:1000.00
-00003102722201179802330:1:14000.00
-00003102722201179812773:1:2500.00
-00003102722201179803819:1:998.00
-00003102722201179812221:1:1000.00
-00003102722201179800917:1:1000.00
-00003102722201179806268:1:1000.00
-00003102722201179803819:1:973.00
-00003102722201179805930:1:1000.00
-00003102722201179812138:1:4160.00
-00003102722201179803129:1:1000.00
-00003102722201179806954:1:8200.60
-00003102722201179818962:1:3564.00
-00003102722201179803611:1:1000.00
-00003102722201179812773:1:1305.00
-00003102722201179806969:1:2380.00
-00003102722201179803733:1:975.00
-00003102722201179818962:1:972.30
-00003102722201179815564:1:1200.00
-00003102722201179803611:1:100.00
-00003102722201179808219:1:5000.00
-00003102722201179808219:1:5000.00
-00003102722201179817714:1:1000.00
-00003102722201179806254:1:1000.00
-00003102722201179810201:1:8000.00
-00003102722201179817775:1:1000.00
-00003102722201179810201:1:11940.00
-00003102722201179815564:1:5000.00
-00003102722201179810201:1:11950.00
-00003102722201179804246:1:972.00
-00003102722201179804246:1:972.00
-00003102722201179810201:1:9800.00
-00003102722201179811842:1:10300.00
-00003102722201179810201:1:6800.00
-00003102722201179810201:1:3500.00
-00003102722201179812150:1:300.00
-00003102722201179817775:1:1000.00
-00003102722201179811335:1:968.00
-00003102722201179803986:1:975.00
-00003102722201179817341:1:1000.00
-00003102722201179811335:1:867.00
-00003102722201179811335:1:952.00
-00003102722201179810201:1:10000.00
-00003102722201179811335:1:923.00
-00003102722201179807903:1:2824.00
-00003102722201179808560:1:1000.00
-00003102722201179810251:1:1000.00
-00003102722201179806762:1:5086.00
-00003102722201179810251:1:999.00
-00003102722201179803507:1:1000.00
-00003102722201179808863:1:7810.00
-00003102722201179808976:1:1000.00
-00003102722201179801116:1:2450.00
-00003102722201179810251:1:998.00
-00003102722201179809133:1:10.23
-00003102722201179819003:1:10000.00
-00003102722201179803986:1:899.00
-00003102722201179806105:1:430.00
-00003102722201179811310:1:1000.00
-00003102722201179804203:1:15390.00
-00003102722201179805983:1:1570.00
-00003102722201179803701:1:820.00
-00003102722201179815797:1:1000.00
-00003102722201179802797:1:6744.00
-00003102722201179806254:1:998.07
-00003102722201179801004:1:1000.00
-00003102722201179807643:1:4450.00
-00003102722201179802797:1:12600.00
-00003102722201179802411:1:1690.00
-00003102722201179802688:1:2800.00
-00003102722201179811124:1:1080.00
-00003102722201179805043:1:2344.00
-00003102722201179802688:1:1700.00
-00003102722201179803565:1:9895.00
-00003102722201179806364:1:2500.00
-00003102722201179806232:1:4860.00
-00003102722201179805043:1:3148.00
-00003102722201179808423:1:1640.00
-00003102722201179817665:1:1000.00
-00003102722201179803819:1:996.00
-00003102722201179803819:1:998.00
-00003102722201179803402:1:12500.00
-00003102722201179809188:1:5068.00
-00003102722201179803733:1:950.00
-00003102722201179811499:1:119.80
-00003102722201179803565:1:21255.00
-00003102722201179819003:1:10.00
-00003102722201179806240:1:1000.00
-00003102722201179809455:1:1000.00
-00003102722201179804290:1:406.00
-00003102722201179803859:1:5930.00
-00003102722201179806364:1:3000.00
-00003102722201179806870:1:400.00
-00003102722201179818792:1:1000.00
-00003102722201179818792:1:258.00
-00003102722201179811499:1:11890.09
-00003102722201179803859:1:5900.00
-00003102722201179807997:1:14368.00
-00003102722201179803859:1:5860.00
-00003102722201179819000:1:1000.00
-00003102722201179805131:1:8698.00
-00003102722201179805131:1:8597.00
-00003102722201179805131:1:9864.00
-00003102722201179804715:1:1000.00
-00003102722201179801116:1:2420.00
-00003102722201179805131:1:9952.00
-00003102722201179811995:1:1000.00
-00003102722201179815565:1:1000.00
-00003102722201179808040:1:12619.00
-00003102722201179808131:1:3056.00
-00003102722201179805930:1:9580.00
-00003102722201179817728:1:1100.00
-00003102722201179803859:1:240.00
-00003102722201179819000:1:1000.00
-00003102722201179817413:1:1000.00
-00003102722201179805190:1:3623.00
-00003102722201179812150:1:200.00
-00003102722201179805427:1:3370.00
-00003102722201179812150:1:2250.00
-00003102722201179802024:1:12087.00
-00003102722201179815565:1:1000.00
-00003102722201179812150:1:200.00
-00003102722201179813199:1:1000.00
-00003102722201179803522:1:1000.00
-00003102722201179801739:1:1000.00
-00003102722201179805434:1:2985.00
-00003102722201179808433:1:5978.50
-00003102722201179803100:1:1000.00
-00003102722201179806266:1:19400.00
-00003102722201179803042:1:472.00
-00003102722201179808262:1:1240.00
-00003102722201179806983:1:863.00
-00003102722201179804290:1:137.00
-00003102722201179809132:1:9186.00
-00003102722201179809498:1:1380.00
-00003102722201179809132:1:8967.00
-00003102722201179803100:1:4000.00
-00003102722201179803759:1:999.00
-00003102722201179803555:1:3000.00
-00003102722201179808444:1:380.00
-00003102722201179809498:1:1400.00
-00003102722201179808444:1:450.00
-00003102722201179812063:1:1002.00
-00003102722201179808444:1:740.00
-00003102722201179808444:1:280.00
-00003102722201179809498:1:1400.00
-00003102722201179808444:1:119.00
-00003102722201179806268:1:8754.00
-00003102722201179804290:1:97.00
-00003102722201179808444:1:304.00
-00003102722201179819000:1:1000.00
-00003102722201179809498:1:1400.00
-00003102722201179804784:1:1047.00
-00003102722201179803555:1:11000.00
-00003102722201179807425:1:4987.00
-00003102722201179801570:1:6939.00
-00003102722201179818929:1:1000.00
-00003102722201179804290:1:82.00
-00003102722201179807425:1:7938.00
-00003102722201179819000:1:1000.00
-00003102722201179813931:1:9170.00
-00003102722201179806804:1:1000.00
-00003102722201179819000:1:1000.00
-00003102722201179809498:1:300.00
-00003102722201179813931:1:7930.00
-00003102722201179803042:1:604.00
-00003102722201179803759:1:999.00
-00003102722201179819000:1:1000.00
-00003102722201179807414:1:3413.00
-00003102722201179808262:1:6548.00
-00003102722201179812282:1:4067.00
-00003102722201179802647:1:6300.00
-00003102722201179807414:1:673.00
-00003102722201179802694:1:5770.00
-00003102722201179804443:1:1000.00
-00003102722201179803668:1:30.92
-00003102722201179806709:1:2366.00
-00003102722201179804740:1:1100.00
-00003102722201179806709:1:2585.00
-00003102722201179807644:1:2080.00
-00003102722201179806709:1:2144.00
-00003102722201179803668:1:3064.00
-00003102722201179806709:1:3865.00
-00003102722201179818900:1:5000.00
-00003102722201179806709:1:2958.00
-00003102722201179800493:1:999.00
-00003102722201179806709:1:1584.00
-00003102722201179801969:1:15000.00
-00003102722201179804246:1:975.00
-00003102722201179806709:1:2865.00
-00003102722201179808723:1:943.00
-00003102722201179806709:1:2699.00
-00003102722201179804246:1:976.00
-00003102722201179804246:1:973.00
-00003102722201179806709:1:2344.00
-00003102722201179806709:1:2185.00
-00003102722201179801150:1:3513.01
-00003102722201179806709:1:1144.00
-00003102722201179809083:1:1529.00
-00003102722201179804263:1:11895.00
-00003102722201179813514:1:1000.00
-00003102722201179804263:1:2166.00
-00003102722203019000121:1:1000.00
-00003102722201179804263:1:4360.00
-00003102722201179814513:1:845.00
-00003102722201179809014:1:10.00
-00003102722201179804263:1:6988.00
-00003102722201179814513:1:4255.00
-00003102722201179814513:1:3862.00
-00003102722201179803611:1:951.00
-00003102722201179807611:1:2700.00
-00003102722201179803611:1:951.00
-00003102722201179817412:1:1005.00
-00003102722201179806979:1:5321.00
-00003102722201179813514:1:1000.00
-00003102722201179800474:1:200.00
-00003102722201179812293:1:11500.00
-00003102722201179805421:1:1232.00
-00003102722201179809128:1:1389.00
-00003102722201179807611:1:1000.00
-00003102722201179802610:1:2450.00
-00003102722201179813514:1:2000.00
-00003102722201179805421:1:3232.00
-00003102722201179806979:1:2712.00
-00003102722201179809118:1:1000.00
-00003102722201179803759:1:999.00
-00003102722201179814492:1:1000.00
-00003102722201179804791:1:1016.00
-00003102722201179807611:1:2000.00
-00003102722201179802610:1:3255.50
-00003102722201179808557:1:388.00
-00003102722201179807409:1:17000.00
-00003102722201179800672:1:16322.00
-00003102722201179808934:1:900.00
-00003102722201179800494:1:975.00
-00003102722201179804288:1:5689.00
-00003102722201179800494:1:968.00
-00003102722201179803982:1:1000.00
-00003102722201179811306:1:3997.00
-00003102722201179811419:1:5520.00
-00003102722201179804727:1:2360.00
-00003102722201179806256:1:876.00
-00003102722201179800494:1:966.00
-00003102722201179800494:1:975.00
-00003102722201179815565:1:56.49
-00003102722201179800494:1:974.00
-00003102722201179818648:1:999.00
-00003102722201179809189:1:1150.00
-00003102722201179803759:1:999.00
-00003102722201179800494:1:975.00
-00003102722201179800494:1:986.00
-00003102722201179803568:1:3598.00
-00003102722201179811169:1:1100.00
-00003102722201179808761:1:2876.00
-00003102722201179803260:1:2012.00
-00003102722201179803982:1:9850.00
-00003102722201179804263:1:16760.00
-00003102722201179811212:1:6000.00
-00003102722201179809189:1:950.00
-00003102722201179800486:1:998.00
-00003102722201179803860:1:1000.00
-00003102722201179809189:1:1270.00
-00003102722201179816800:1:1566.00
-00003102722201179809189:1:1350.00
-00003102722201179809189:1:1530.00
-00003102722201179801635:1:5297.00
-00003102722201179811334:1:1000.00
-00003102722201179803986:1:998.00
-00003102722201179811140:1:1080.00
-00003102722201179801004:1:882.00
-00003102722201179818993:1:8500.00
-00003102722201179815552:1:5687.00
-00003102722201179814146:1:29832.00
-00003102722201179803861:1:1000.00
-00003102722201179806889:1:2410.00
-00003102722201179803260:1:2001.00
-00003102722201179808592:1:2374.00
-00003102722201179800763:1:4135.00
-00003102722201179814146:1:10000.00
-00003102722201179809025:1:1047.50
-00003102722201179807840:1:1208.00
-00003102722201179807409:1:12980.00
-00003102722201179813933:1:997.00
-00003102722201179811308:1:8805.00
-00003102722201179807840:1:2050.00
-00003102722201179803861:1:18023.00
-00003102722201179804246:1:952.00
-00003102722201179804246:1:956.00
-00003102722201179804246:1:957.00
-00003102722201179803861:1:20012.05
-00003102722201179816177:1:7580.00
-00003102722201179804246:1:958.00
-00003102722201179806765:1:8120.00
-00003102722201179806765:1:2160.00
-00003102722201179804246:1:700.00
-00003102722201179806765:1:2540.00
-00003102722201179818981:1:3849.00
-00003102722201179812165:1:995.00
-00003102722201179811212:1:1000.00
-00003102722201179800486:1:5826.00
-00003102722201179819004:1:1000.00
-00003102722201179804719:1:806.00
-00003102722201179807433:1:1250.00
-00003102722201179803982:1:10863.00
-00003102722201179806331:1:1030.00
-00003102722201179800486:1:954.00
-00003102722201179819004:1:1000.00
-00003102722201179817311:1:1000.00
-00003102722201179803833:1:3200.00
-00003102722201179819004:1:1000.00
-00003102722201179803986:1:608.00
-00003102722201179819004:1:1000.00
-00003102722201179807994:1:6320.00
-00003102722201179819004:1:1000.00
-00003102722201179805048:1:5860.00
-00003102722201179808876:1:3753.00
-00003102722201179805131:1:9624.00
-00003102722201179803986:1:508.00
-00003102722201179805131:1:9872.00
-00003102722201179813898:1:100.00
-00003102722201179805131:1:8732.00
-00003102722201179802035:1:8372.00
-00003102722201179805131:1:9841.00
-00003102722201179819004:1:4400.00
-00003102722203019003947:1:158.00
-00003102722201179805357:1:8000.00
-00003102722201179804220:1:1000.00
-00003102722201179801810:1:5863.00
-00003102722201179806161:1:1050.00
-00003102722201179800486:1:3948.00
-00003102722201179808761:1:2795.00
-00003102722201179817492:1:10020.00
-00003102722201179804398:1:7586.00
-00003102722203019000455:1:23998.00
-00003102722201179803760:1:1000.00
-00003102722201179817493:1:1000.00
-00003102722201179804398:1:3850.00
-00003102722203019000455:1:3036.00
-00003102722201179817746:1:1000.00
-00003102722201179808934:1:920.00
-00003102722201179817729:1:1100.00
-00003102722201179804784:1:16471.00
-00003102722201179817746:1:13569.00
-00003102722201179808876:1:1337.00
-00003102722203019003760:1:2256.00
-00003102722201179808876:1:2127.00
-00003102722201179812020:1:6954.00
-00003102722201179804398:1:8950.00
-00003102722201179803818:1:2800.00
-00003102722201179812062:1:1000.00
-00003102722201179804398:1:5685.00
-00003102722201179803986:1:932.00
-00003102722201179809126:1:1598.00
-00003102722201179804290:1:1927.00
-00003102722201179807483:1:1110.00
-00003102722201179804782:1:1052.00
-00003102722201179808876:1:1323.00
-00003102722201179811212:1:3980.00
-00003102722201179803986:1:685.00
-00003102722201179802891:1:321.00
-00003102722201179806969:1:2385.00
-00003102722201179808220:1:14137.00
-00003102722201179808850:1:998.00
-00003102722201179807997:1:3158.00
-00003102722201179806163:1:1010.00
-00003102722201179807488:1:548.00
-00003102722201179808476:1:3157.00
-00003102722201179808850:1:1726.00
-00003102722201179802891:1:6870.00
-00003102722201179807488:1:6528.00
-00003102722201179801588:1:14460.00
-00003102722201179801588:1:15160.00
-00003102722201179802891:1:3897.00
-00003102722201179802027:1:9970.00
-00003102722203019003755:1:1765.00
-00003102722201179805425:1:3547.00
-00003102722201179801810:1:2964.00
-00003102722201179810994:1:8530.00
-00003102722201179806271:1:1000.00
-00003102722201179808850:1:2638.00
-00003102722201179812163:1:7658.00
-00003102722201179803767:1:1000.00
-00003102722201179800790:1:2846.00
-00003102722201179802711:1:1940.00
-00003102722203019000121:1:8002.00
-00003102722201179800790:1:943.00
-00003102722201179800462:1:999.99
-00003102722201179808221:1:2487.00
-00003102722201179800462:1:1000.00
-00003102722201179800790:1:1736.00
-00003102722201179818963:1:1000.00
-00003102722201179800462:1:1000.00
-00003102722201179817728:1:10350.00
-00003102722201179809452:1:3795.00
-00003102722201179817728:1:10200.00
-00003102722201179812072:1:1000.00
-00003102722201179817728:1:5002.00
-00003102722201179804246:1:980.00
-00003102722201179812072:1:9870.00
-00003102722201179804246:1:982.00
-00003102722201179804246:1:983.00
-00003102722201179807436:1:1870.00
-00003102722201179804246:1:985.00
-00003102722201179817728:1:21020.00
-00003102722201179807436:1:1285.00
-00003102722201179807436:1:1869.00
-00003102722201179807436:1:1385.00
-00003102722201179807436:1:2069.00
-00003102722201179809019:1:10.00
-00003102722201179809024:1:4856.00
-00003102722201179802711:1:2658.00
-00003102722201179804052:1:4355.00
-00003102722201179801163:1:700.00
-00003102722201179813148:1:1007.00
-00003102722201179800493:1:974.00
-00003102722201179804791:1:1209.00
-00003102722201179804244:1:2995.00
-00003102722201179807436:1:2387.00
-00003102722201179813148:1:12719.00
-00003102722201179818964:1:951.00
-00003102722201179813147:1:9542.00
-00003102722201179803793:1:7113.00
-00003102722201179817710:1:1815.00
-00003102722201179818964:1:782.00
-00003102722203019000772:1:1000.00
-00003102722201179801125:1:4315.00
-00003102722201179813365:1:6309.00
-00003102722201179809019:1:10.00
-00003102722201179803767:1:1000.00
-00003102722201179811147:1:4134.00
-00003102722201179808558:1:20000.00
-00003102722201179808248:1:2975.00
-00003102722201179802411:1:3850.00
-00003102722201179809036:1:7832.00
-00003102722201179808248:1:4937.00
-00003102722201179801825:1:3440.00
-00003102722201179808248:1:1682.00
-00003102722201179813966:1:1000.00
-00003102722201179803859:1:5830.00
-00003102722201179809036:1:2534.00
-00003102722201179813966:1:1000.00
-00003102722201179813830:1:5001.85
-00003102722201179809172:1:1890.00
-00003102722201179807414:1:1237.00
-00003102722201179801320:1:827.00
-00003102722201179803859:1:4150.00
-00003102722201179806258:1:6508.00
-00003102722201179812159:1:9800.00
-00003102722201179802689:1:2600.00
-00003102722201179818767:1:1000.00
-00003102722201179803859:1:2000.00
-00003102722201179801843:1:1686.00
-00003102722201179808072:1:3852.00
-00003102722201179809091:1:5632.00
-00003102722201179801305:1:5200.00
-00003102722201179801843:1:1686.00
-00003102722201179810251:1:1000.00
-00003102722201179805847:1:3000.00
-00003102722201179813147:1:4253.00
-00003102722201179805847:1:6000.00
-00003102722201179802651:1:992.00
-00003102722201179810251:1:999.00
-00003102722201179802651:1:968.00
-00003102722201179806256:1:873.00
-00003102722201179810251:1:1000.00
-00003102722201179808140:1:1125.00
-00003102722201179802622:1:9900.00
-00003102722203019000188:1:1000.00
-00003102722201179817866:1:993.00
-00003102722201179817866:1:993.00
-00003102722201179809019:1:10.00
-00003102722201179808963:1:1001.00
-00003102722201179811083:1:1120.00
-00003102722201179808439:1:1000.00
-00003102722201179814230:1:2110.00
-00003102722201179804244:1:2631.00
-00003102722201179808114:1:4980.00
-00003102722201179802621:1:17610.00
-00003102722201179806301:1:1000.00
-00003102722201179803042:1:475.00
-00003102722201179818919:1:1000.00
-00003102722201179806268:1:1500.00
-00003102722201179804052:1:4588.00
-00003102722201179815582:1:9821.00
-00003102722201179813938:1:1123.00
-00003102722201179808932:1:5998.89
-00003102722201179808932:1:5999.91
-00003102722201179803527:1:8860.00
-00003102722201179808763:1:9412.87
-00003102722201179803767:1:1000.00
-00003102722201179808763:1:2014.00
-00003102722201179808763:1:2014.00
-00003102722201179801771:1:18900.00
-00003102722201179809101:1:3859.00
-00003102722201179813830:1:7001.63
-00003102722201179817866:1:999.00
-00003102722201179802681:1:3215.00
-00003102722201179817866:1:899.00
-00003102722201179817492:1:15000.00
-00003102722201179800875:1:1000.00
-00003102722201179800875:1:1000.00
-00003102722201179800875:1:1000.00
-00003102722201179810399:1:1500.00
-00003102722201179800875:1:1000.00
-00003102722203019003751:1:7395.00
-00003102722203019003751:1:7831.00
-00003102722203019003751:1:5813.00
-00003102722201179818950:1:1845.00
-00003102722201179808952:1:8851.00
-00003102722201179811204:1:150.00
-00003102722201179801320:1:620.00
-00003102722201179808965:1:2385.47
-00003102722201179811447:1:48500.00
-00003102722201179800875:1:1000.00
-00003102722201179800875:1:1000.00
-00003102722201179811204:1:3250.00
-00003102722201179801116:1:2390.00
-00003102722201179800875:1:1000.00
-00003102722201179808965:1:2490.50
-00003102722201179804246:1:930.00
-00003102722201179804246:1:932.00
-00003102722201179804246:1:935.00
-00003102722201179801320:1:1629.00
-00003102722201179811204:1:380.00
-00003102722201179804263:1:14470.00
-00003102722201179811447:1:48500.00
-00003102722201179801320:1:3792.00
-00003102722201179805425:1:2015.00
-00003102722201179805852:1:1000.00
-00003102722201179803767:1:450.00
-00003102722201179815580:1:1579.00
-00003102722201179801116:1:2390.00
-00003102722201179808414:1:1290.00
-00003102722201179801116:1:2000.00
-00003102722201179813198:1:995.00
-00003102722201179803151:1:955.00
-00003102722201179801501:1:2835.00
-00003102722201179801570:1:7593.00
-00003102722201179801501:1:2775.00
-00003102722201179801570:1:4216.00
-00003102722201179801501:1:2735.00
-00003102722201179801570:1:2763.00
-00003102722201179801570:1:963.00
-00003102722201179801570:1:989.00
-00003102722201179808860:1:1000.00
-00003102722201179806226:1:1010.05
-00003102722201179801570:1:689.00
-00003102722201179818920:1:6040.00
-00003102722201179802793:1:956.00
-00003102722201179802793:1:10208.00
-00003102722201179812112:1:1800.00
-00003102722201179802879:1:3900.00
-00003102722201179802879:1:3870.00
-00003102722201179802879:1:1154.00
-00003102722201179804052:1:4400.00
-00003102722201179811307:1:2000.00
-00003102722201179801139:1:10000.00
-00003102722203019003979:1:4000.00
-00003102722201179803779:1:500.00
-00003102722201179814203:1:100.00
-00003102722201179814203:1:9000.00
-00003102722201179817370:1:8400.00
-00003102722201179817370:1:8058.00
-00003102722203019003874:1:1085.00
-00003102722201179801116:1:1020.00
-00003102722201179817731:1:990.00
-00003102722201179817731:1:600.00
-00003102722201179818753:1:1000.00
-00003102722201179817492:1:10480.00
-00003102722201179817492:1:2230.00
-00003102722201179818753:1:10016.00
-00003102722201179812160:1:3000.00
-00003102722201179809172:1:2031.00
-00003102722201179812555:1:6000.00
-00003102722201179802701:1:150.00
-00003102722201179802701:1:350.00
-00003102722201179807483:1:10.00
-00003102722201179807483:1:150.00
-00003102722201179808641:1:999.90
-00003102722201179806258:1:8120.00
-00003102722201179808823:1:3959.00
-00003102722201179817869:1:10.00
-00003102722201179805426:1:8100.00
-00003102722201179803505:1:1000.00
-00003102722201179817869:1:905.00
-00003102722201179804246:1:987.00
-00003102722201179817695:1:10023.00
-00003102722201179804246:1:986.00
-00003102722201179817869:1:2000.00
-00003102722201179804246:1:985.00
-00003102722201179803733:1:945.00
-00003102722201179806807:1:2680.00
-00003102722201179806807:1:2958.00
-00003102722201179813461:1:3025.00
-00003102722201179811307:1:2100.00
-00003102722201179807450:1:5218.00
-00003102722201179808476:1:3482.00
-00003102722201179806969:1:2520.00
-00003102722203019000455:1:22001.00
-00003102722201179813933:1:1996.00
-00003102722201179817389:1:20630.00
-00003102722201179812144:1:1000.00
-00003102722201179818964:1:827.00
-00003102722201179806258:1:3550.00
-00003102722201179808879:1:12998.00
-00003102722201179813937:1:16000.00
-00003102722201179806229:1:1144.00
-00003102722201179800465:1:1000.00
-00003102722201179803759:1:999.00
-00003102722201179818964:1:725.00
-00003102722201179817467:1:1000.00
-00003102722201179809080:1:4000.00
-00003102722201179803759:1:999.00
-00003102722201179809080:1:24000.00
-00003102722201179809452:1:5978.00
-00003102722201179818964:1:783.00
-00003102722201179817759:1:1230.00
-00003102722201179808895:1:100.00
-00003102722201179800899:1:10238.00
-00003102722201179800899:1:18235.00
-00003102722201179818673:1:1000.00
-00003102722201179800899:1:978.00
-00003102722203019004050:1:5000.00
-00003102722201179818950:1:1255.00
-00003102722201179818964:1:963.00
-00003102722201179800899:1:18635.00
-00003102722201179806140:1:10082.00
-00003102722201179817476:1:1000.00
-00003102722201179805932:1:2370.00
-00003102722201179805932:1:980.00
-00003102722201179818673:1:132.09
-00003102722201179807423:1:91000.00
-00003102722201179806258:1:6650.00
-00003102722201179807423:1:2800.00
-00003102722201179808931:1:1100.00
-00003102722203019000159:1:1050.00
-00003102722201179807423:1:9900.00
-00003102722201179818670:1:878.00
-00003102722201179812458:1:1025.00
-00003102722201179808646:1:986.00
-00003102722201179809091:1:6932.00
-00003102722201179803733:1:964.00
-00003102722201179804246:1:978.00
-00003102722201179806258:1:989.00
-00003102722201179804246:1:976.00
-00003102722203019000653:1:1000.00
-00003102722201179807423:1:1200.00
-00003102722201179803901:1:5863.00
-00003102722203019000653:1:1000.00
-00003102722201179813102:1:10.00
-00003102722201179813102:1:11.00
-00003102722201179806800:1:4485.00
-00003102722201179812457:1:3245.00
-00003102722201179802193:1:994.00
-00003102722201179802193:1:982.08
-00003102722201179816188:1:1000.00
-00003102722203019004050:1:15000.00
-00003102722201179811220:1:14888.88
-00003102722201179812458:1:845.00
-00003102722201179803759:1:999.00
-00003102722201179813102:1:9800.00
-00003102722201179809101:1:850.00
-00003102722201179812172:1:280.00
-00003102722201179812172:1:288.00
-00003102722201179817759:1:3630.00
-00003102722201179813461:1:3218.00
-00003102722201179812172:1:1368.00
-00003102722201179804263:1:16770.00
-00003102722201179811131:1:3500.00
-00003102722201179803794:1:1000.00
-00003102722201179812172:1:662.00
-00003102722201179804263:1:9890.00
-00003102722201179804440:1:3620.00
-00003102722201179812457:1:2654.00
-00003102722201179812172:1:1368.00
-00003102722201179804440:1:4375.00
-00003102722203019004050:1:15000.00
-00003102722201179812172:1:391.00
-00003102722201179808803:1:18000.00
-00003102722201179804440:1:5847.00
-00003102722201179803154:1:3688.85
-00003102722201179812457:1:765.00
-00003102722201179812172:1:185.00
-00003102722201179817710:1:13269.00
-00003102722201179804440:1:3975.00
-00003102722201179803154:1:2600.00
-00003102722201179812172:1:185.00
-00003102722201179801632:1:9650.00
-00003102722201179806825:1:1010.00
-00003102722201179806106:1:576.00
-00003102722201179817759:1:3610.00
-00003102722201179806825:1:9517.00
-00003102722201179807937:1:1000.00
-00003102722201179813183:1:3500.00
-00003102722201179806825:1:11258.00
-00003102722201179812172:1:313.00
-00003102722201179812172:1:313.00
-00003102722201179808253:1:931.00
-00003102722201179806268:1:5500.00
-00003102722201179813183:1:4800.00
-00003102722201179812172:1:195.00
-00003102722201179808253:1:855.00
-00003102722201179812172:1:195.00
-00003102722201179806825:1:4111.00
-00003102722201179804767:1:6307.00
-00003102722201179806825:1:6417.00
-00003102722201179815587:1:3125.00
-00003102722201179806268:1:2888.00
-00003102722201179807793:1:1000.00
-00003102722201179812128:1:999.00
-00003102722201179808716:1:1020.00
-00003102722201179812128:1:999.00
-00003102722201179812172:1:373.00
-00003102722201179806246:1:1050.00
-00003102722201179805928:1:4605.00
-00003102722201179808444:1:7882.00
-00003102722201179808716:1:2818.00
-00003102722201179804856:1:1580.00
-00003102722201179808087:1:6029.11
-00003102722201179808087:1:6053.21
-00003102722201179804856:1:1560.00
-00003102722201179806234:1:719.00
-00003102722201179804856:1:1370.00
-00003102722201179803193:1:1000.00
-00003102722201179804263:1:5530.00
-00003102722201179803733:1:997.00
-00003102722201179806989:1:635.00
-00003102722201179814202:1:2355.69
-00003102722201179817759:1:990.00
-00003102722201179804856:1:1585.00
-00003102722201179806255:1:980.00
-00003102722201179803193:1:29850.00
-00003102722201179803831:1:19988.80
-00003102722201179817466:1:1000.00
-00003102722201179802739:1:9558.05
-00003102722201179808346:1:1000.00
-00003102722201179803831:1:37580.00
-00003102722201179808034:1:5999.00
-00003102722201179802710:1:4418.20
-00003102722201179812108:1:4800.00
-00003102722203019000465:1:1008.00
-00003102722201179804246:1:956.00
-00003102722201179803551:1:1216.00
-00003102722201179804246:1:958.00
-00003102722201179812014:1:7988.00
-00003102722201179816164:1:1100.00
-00003102722203019003862:1:956.00
-00003102722201179801119:1:1000.00
-00003102722201179805428:1:500.00
-00003102722201179801315:1:100.00
-00003102722201179805428:1:83.00
-00003102722201179816164:1:2089.00
-00003102722201179801668:1:1650.00
-00003102722201179806727:1:4397.00
-00003102722201179815722:1:1000.00
-00003102722201179801501:1:2905.00
-00003102722201179811842:1:1900.00
-00003102722201179812385:1:1000.00
-00003102722201179811225:1:5000.00
-00003102722201179808980:1:4680.00
-00003102722203019003862:1:2971.00
-00003102722201179804442:1:3163.00
-00003102722201179818790:1:1000.00
-00003102722201179802660:1:10.00
-00003102722201179813102:1:11.00
-00003102722201179805155:1:4771.00
-00003102722201179801104:1:1000.00
-00003102722201179804442:1:7166.00
-00003102722201179813102:1:30.00
-00003102722201179814147:1:1000.00
-00003102722201179808238:1:13185.46
-00003102722201179813102:1:30.00
-00003102722201179808646:1:890.00
-00003102722201179803640:1:380.00
-00003102722201179803733:1:977.00
-00003102722201179803527:1:937.00
-00003102722201179805356:1:1000.00
-00003102722201179813512:1:1000.00
-00003102722201179809055:1:9000.00
-00003102722201179802660:1:1000.00
-00003102722201179803551:1:400.00
-00003102722201179803640:1:812.40
-00003102722201179808240:1:980.00
-00003102722201179818950:1:2214.00
-00003102722201179808931:1:4030.00
-00003102722201179805983:1:680.00
-00003102722201179814247:1:9990.00
-00003102722201179803640:1:680.00
-00003102722201179817759:1:990.00
-00003102722201179818705:1:5563.00
-00003102722201179803640:1:2899.00
-00003102722201179812206:1:976.00
-00003102722201179808135:1:8654.00
-00003102722201179801026:1:1000.00
-00003102722201179809409:1:1000.00
-00003102722201179805048:1:5680.00
-00003102722201179812206:1:200.00
-00003102722201179808135:1:5642.00
-00003102722201179818647:1:4009.00
-00003102722201179812055:1:1000.00
-00003102722201179818647:1:2789.00
-00003102722201179809409:1:987.00
-00003102722201179817759:1:700.00
-00003102722201179811400:1:4869.00
-00003102722201179801315:1:1000.00
-00003102722201179804442:1:5127.00
-00003102722201179803596:1:2950.00
-00003102722201179815550:1:10087.00
-00003102722201179805048:1:5680.00
-00003102722201179803009:1:1000.00
-00003102722201179807949:1:1000.00
-00003102722201179803958:1:1000.00
-00003102722201179815550:1:5039.00
-00003102722201179815550:1:6003.00
-00003102722201179803794:1:1000.00
-00003102722201179808896:1:100.00
-00003102722201179803551:1:618.00
-00003102722201179807949:1:18000.00
-00003102722201179804200:1:1000.00
-00003102722201179807936:1:1000.00
-00003102722201179804200:1:1000.00
-00003102722201179806955:1:1111.11
-00003102722201179804200:1:1000.00
-00003102722201179812155:1:14999.00
-00003102722201179808761:1:2859.00
-00003102722201179811335:1:963.00
-00003102722201179804383:1:14233.33
-00003102722201179805160:1:1100.00
-00003102722201179811329:1:1012.00
-00003102722201179815740:1:1000.00
-00003102722201179811201:1:1000.00
-00003102722201179807968:1:38961.00
-00003102722201179807979:1:1030.00
-00003102722201179811308:1:3900.00
-00003102722201179806762:1:4892.00
-00003102722201179813184:1:5810.00
-00003102722201179806587:1:1000.00
-00003102722201179811316:1:5004.00
-00003102722201179801501:1:2865.00
-00003102722201179801501:1:524.00
-00003102722201179806765:1:8940.00
-00003102722201179806255:1:930.00
-00003102722201179801501:1:578.00
-00003102722201179803733:1:932.00
-00003102722201179800634:1:1000.00
-00003102722201179818965:1:1700.00
-00003102722203019004084:1:1000.00
-00003102722201179808935:1:1983.00
-00003102722201179808646:1:990.00
-00003102722201179817759:1:4150.00
-00003102722201179813200:1:200.00
-00003102722201179808550:1:5235.00
-00003102722201179807949:1:10000.00
-00003102722201179802331:1:6851.00
-00003102722201179807674:1:180.00
-00003102722201179807949:1:10000.00
-00003102722201179817781:1:8756.00
-00003102722201179807674:1:100.00
-00003102722201179807099:1:5200.00
-00003102722201179813931:1:10700.00
-00003102722201179808878:1:8933.00
-00003102722201179801708:1:9000.20
-00003102722201179802304:1:10.00
-00003102722201179808878:1:8963.00
-00003102722201179803611:1:828.00
-00003102722201179813147:1:4587.00
-00003102722201179801315:1:11600.00
-00003102722201179803611:1:828.00
-00003102722201179808878:1:8995.00
-00003102722201179808439:1:32000.00
-00003102722201179800493:1:943.00
-00003102722201179803611:1:828.00
-00003102722201179807979:1:12400.00
-00003102722201179802332:1:4899.00
-00003102722201179801172:1:1000.00
-00003102722201179803611:1:828.00
-00003102722201179802610:1:10255.55
-00003102722201179802636:1:4999.00
-00003102722201179811348:1:1000.00
-00003102722201179808878:1:6388.00
-00003102722201179812209:1:990.00
-00003102722201179809452:1:5328.00
-00003102722201179806975:1:1045.00
-00003102722201179807949:1:7000.00
-00003102722201179816617:1:8955.00
-00003102722201179809061:1:1250.00
-00003102722201179812142:1:1000.00
-00003102722201179801375:1:1000.00
-00003102722201179801375:1:10.00
-00003102722201179803540:1:10.00
-00003102722201179803819:1:998.00
-00003102722201179808958:1:31500.00
-00003102722201179807948:1:1000.00
-00003102722201179807981:1:101.00
-00003102722201179803601:1:1545.00
-00003102722201179801650:1:1000.00
-00003102722201179803819:1:998.00
-00003102722201179804701:1:1050.00
-00003102722201179801650:1:1000.00
-00003102722201179803540:1:2990.00
-00003102722201179813974:1:1938.00
-00003102722201179801650:1:1000.00
-00003102722201179804701:1:630.00
-00003102722201179806268:1:4600.00
-00003102722201179801650:1:1000.00
-00003102722201179808862:1:3550.00
-00003102722201179806715:1:2351.00
-00003102722201179808896:1:100.00
-00003102722201179806268:1:2920.00
-00003102722201179817417:1:1000.00
-00003102722201179803590:1:12050.00
-00003102722201179805928:1:525.00
-00003102722201179803819:1:265.00
-00003102722201179803590:1:3080.00
-00003102722201179805928:1:4988.00
-00003102722201179811335:1:953.00
-00003102722201179811335:1:976.00
-00003102722201179809101:1:1983.00
-00003102722201179807097:1:100.00
-00003102722201179808761:1:2357.50
-00003102722201179808862:1:7660.00
-00003102722201179804052:1:2442.00
-00003102722201179808862:1:8200.00
-00003102722201179808862:1:1520.00
-00003102722201179806700:1:3668.00
-00003102722201179806700:1:699.00
-00003102722201179803540:1:2000.00
-00003102722201179802304:1:8229.90
-00003102722201179803568:1:728.00
-00003102722201179806874:1:5735.00
-00003102722201179803792:1:1412.00
-00003102722201179806981:1:764.00
-00003102722201179808891:1:7000.00
-00003102722201179807425:1:9971.00
-00003102722201179807425:1:8193.00
-00003102722201179807425:1:5189.00
-00003102722201179812142:1:9003.00
-00003102722201179801114:1:1000.00
-00003102722201179816106:1:1098.00
-00003102722201179802187:1:1000.00
-00003102722201179814525:1:672.00
-00003102722201179803535:1:1000.00
-00003102722201179803850:1:1000.00
-00003102722201179808053:1:1000.00
-00003102722201179814525:1:530.00
-00003102722201179809131:1:1100.00
-00003102722201179814525:1:380.00
-00003102722201179806845:1:2000.00
-00003102722201179803222:1:1056.00
-00003102722201179808053:1:1000.00
-00003102722201179811113:1:15900.00
-00003102722201179807097:1:200.00
-00003102722201179806277:1:1000.00
-00003102722201179812600:1:1000.00
-00003102722201179817771:1:1000.00
-00003102722201179804280:1:16830.00
-00003102722201179813974:1:1052.00
-00003102722201179809409:1:10000.00
-00003102722201179803287:1:500.00
-00003102722201179809131:1:560.00
-00003102722201179809409:1:8559.00
-00003102722201179803287:1:950.00
-00003102722201179801155:1:1000.00
-00003102722201179803287:1:3979.00
-00003102722201179809131:1:430.00
-00003102722201179802047:1:1000.00
-00003102722201179804203:1:20000.00
-00003102722201179802187:1:991.00
-00003102722201179806326:1:3472.00
-00003102722201179816107:1:1049.00
-00003102722201179803668:1:2994.00
-00003102722201179803020:1:1346.00
-00003102722201179806326:1:4769.00
-00003102722201179802047:1:10020.00
-00003102722201179803100:1:7850.00
-00003102722201179806256:1:869.00
-00003102722201179808646:1:890.00
-00003102722201179809105:1:3540.00
-00003102722201179801759:1:172.00
-00003102722201179803262:1:99.00
-00003102722201179812388:1:2300.00
-00003102722201179803937:1:1000.00
-00003102722201179807645:1:3900.00
-00003102722201179804444:1:1000.00
-00003102722201179803262:1:42.50
-00003102722201179800486:1:986.00
-00003102722201179802047:1:9500.00
-00003102722201179815499:1:4600.00
-00003102722201179802047:1:10050.00
-00003102722201179808722:1:200.00
-00003102722201179803760:1:998.00
-00003102722201179811227:1:1000.00
-00003102722201179812239:1:200.00
-00003102722201179812239:1:5680.00
-00003102722201179811303:1:1020.00
-00003102722203019003874:1:1078.00
-00003102722201179806769:1:9500.00
-00003102722201179805184:1:12358.00
-00003102722201179812209:1:997.00
-00003102722201179809061:1:30000.00
-00003102722201179809409:1:20000.00
-00003102722201179804876:1:1100.00
-00003102722201179807902:1:5842.00
-00003102722201179812211:1:1000.00
-00003102722201179808761:1:1759.00
-00003102722203019000168:1:1000.00
-00003102722201179809405:1:1000.00
-00003102722203019000195:1:2356.00
-00003102722201179808253:1:3761.00
-00003102722201179808253:1:2733.00
-00003102722201179803601:1:2850.00
-00003102722201179807906:1:1184.00
-00003102722201179806216:1:1000.00
-00003102722201179804781:1:465.00
-00003102722201179804876:1:79.00
-00003102722201179804876:1:39.00
-00003102722201179804876:1:63.00
-00003102722201179803100:1:9800.00
-00003102722201179804876:1:38.00
-00003102722201179804876:1:37.00
-00003102722201179818611:1:948.00
-00003102722201179804876:1:35.00
-00003102722201179804876:1:76.00
-00003102722201179803568:1:824.00
-00003102722201179804876:1:38.00
-00003102722201179808891:1:12000.00
-00003102722201179817494:1:1000.00
-00003102722201179804781:1:1897.00
-00003102722201179802411:1:1975.00
-00003102722201179808891:1:6900.00
-00003102722201179807903:1:4377.00
-00003102722201179804784:1:16207.00
-00003102722201179804781:1:475.00
-00003102722201179806725:1:998.00
-00003102722201179800790:1:2346.00
-00003102722201179804781:1:921.00
-00003102722201179800790:1:2478.00
-00003102722201179800494:1:958.00
-00003102722201179801165:1:3543.00
-00003102722201179800494:1:969.00
-00003102722201179815708:1:3500.00
-00003102722201179800494:1:956.00
-00003102722201179812011:1:1057.00
-00003102722201179803552:1:2965.00
-00003102722201179802627:1:9880.00
-00003102722201179808448:1:1735.00
-00003102722201179801165:1:8953.00
-00003102722201179803100:1:7689.00
-00003102722201179803100:1:2200.00
-00003102722201179806935:1:1000.00
-00003102722201179806729:1:3399.00
-00003102722201179811227:1:2963.00
-00003102722201179801677:1:1000.00
-00003102722201179801677:1:5000.00
-00003102722201179802710:1:3400.00
-00003102722201179801677:1:5000.00
-00003102722201179802049:1:1006.00
-00003102722201179801712:1:9560.00
-00003102722201179808433:1:4579.50
-00003102722201179808221:1:1082.00
-00003102722201179800899:1:896.00
-00003102722201179806704:1:49998.00
-00003102722201179809452:1:4950.00
-00003102722201179803733:1:995.00
-00003102722201179808221:1:1034.00
-00003102722201179813933:1:999.00
-00003102722201179812388:1:2300.00
-00003102722201179803685:1:2986.00
-00003102722201179803685:1:2779.00
-00003102722201179803685:1:2386.00
-00003102722201179801313:1:3865.00
-00003102722201179804052:1:5096.00
-00003102722201179802651:1:3858.00
-00003102722201179803685:1:3759.00
-00003102722201179803796:1:1000.00
-00003102722201179803685:1:1869.00
-00003102722201179808448:1:6273.00
-00003102722201179812388:1:2220.00
-00003102722201179800899:1:968.00
-00003102722201179803222:1:9612.00
-00003102722201179805658:1:3975.00
-00003102722201179803723:1:990.00
-00003102722201179803771:1:3523.00
-00003102722201179807433:1:845.00
-00003102722201179808427:1:3290.00
-00003102722201179808956:1:45000.00
-00003102722201179803723:1:1000.00
-00003102722201179808427:1:2345.00
-00003102722201179808427:1:2660.00
-00003102722201179808956:1:39000.00
-00003102722201179808427:1:2380.00
-00003102722201179800899:1:986.00
-00003102722201179817866:1:998.00
-00003102722201179805658:1:4365.00
-00003102722201179817759:1:980.00
-00003102722201179808476:1:3642.00
-00003102722201179807433:1:840.00
-00003102722201179817866:1:998.00
-00003102722201179808427:1:2346.00
-00003102722201179808427:1:1947.00
-00003102722201179806316:1:1020.00
-00003102722201179806316:1:9100.00
-00003102722201179808137:1:960.00
-00003102722201179801772:1:25632.11
-00003102722201179812388:1:2000.00
-00003102722201179804771:1:10700.00
-00003102722201179806755:1:1023.00
-00003102722203019000122:1:1000.00
-00003102722201179806906:1:26.40
-00003102722201179817665:1:10.00
-00003102722201179806765:1:3990.00
-00003102722201179806326:1:3271.00
-00003102722201179806196:1:150.00
-00003102722201179806765:1:5490.00
-00003102722201179800486:1:3628.00
-00003102722201179808040:1:7895.00
-00003102722201179806196:1:850.00
-00003102722201179808040:1:6538.00
-00003102722201179808040:1:5030.00
-00003102722201179806326:1:4129.00
-00003102722201179801772:1:19542.22
-00003102722201179817691:1:1000.00
-00003102722201179807908:1:1258.00
-00003102722201179818654:1:945.00
-00003102722201179818654:1:945.00
-00003102722203019003982:1:1000.00
-00003102722201179818654:1:945.00
-00003102722201179804856:1:1610.00
-00003102722201179802301:1:1000.00
-00003102722201179817661:1:1000.00
-00003102722201179802694:1:5955.00
-00003102722201179804856:1:1745.00
-00003102722201179804856:1:1582.00
-00003102722201179808040:1:5975.00
-00003102722201179806906:1:2689.00
-00003102722201179817866:1:995.00
-00003102722201179808553:1:23550.00
-00003102722201179813133:1:8059.00
-00003102722201179808580:1:1000.00
-00003102722201179806906:1:74.00
-00003102722201179806906:1:24.00
-00003102722201179806487:1:1000.00
-00003102722201179806906:1:62.00
-00003102722201179808722:1:2000.00
-00003102722201179806906:1:32.00
-00003102722201179801154:1:11002.35
-00003102722201179806229:1:4500.00
-00003102722201179806482:1:3000.00
-00003102722201179806906:1:267.00
-00003102722203019000320:1:998.00
-00003102722201179808722:1:500.00
-00003102722201179811103:1:6230.00
-00003102722201179800797:1:14760.00
-00003102722201179801154:1:3102.55
-00003102722201179811842:1:969.00
-00003102722201179806482:1:2900.00
-00003102722203019003900:1:1000.00
-00003102722201179802675:1:1275.00
-00003102722201179808491:1:1580.00
-00003102722201179808808:1:13350.00
-00003102722201179804856:1:1403.00
-00003102722201179806482:1:2100.00
-00003102722201179802336:1:100.00
-00003102722201179800796:1:28500.00
-00003102722203019003947:1:1522.00
-00003102722201179806906:1:62.40
-00003102722201179817665:1:980.00
-00003102722201179805041:1:20050.00
-00003102722201179806482:1:10.00
-00003102722201179817661:1:1000.00
-00003102722201179803020:1:2518.00
-00003102722201179811103:1:6730.00
-00003102722201179811335:1:938.00
-00003102722201179805041:1:9952.00
-00003102722201179806906:1:34.00
-00003102722201179818766:1:1000.00
-00003102722201179806906:1:864.00
-00003102722201179803799:1:1000.00
-00003102722201179817661:1:3000.00
-00003102722201179803444:1:123.00
-00003102722201179806906:1:765.00
-00003102722201179808002:1:500.00
-00003102722201179812387:1:1050.00
-00003102722201179806906:1:76.80
-00003102722201179803444:1:1560.00
-00003102722201179808002:1:23688.00
-00003102722201179802005:1:1000.00
-00003102722201179803630:1:1000.00
-00003102722201179806906:1:62.70
-00003102722203019000469:1:1002.00
-00003102722201179805023:1:6580.00
-00003102722201179805023:1:6850.00
-00003102722201179806906:1:42.70
-00003102722201179806171:1:10082.00
-00003102722201179803596:1:3520.00
-00003102722201179815724:1:1000.00
-00003102722201179808113:1:12690.00
-00003102722203019004085:1:12000.00
-00003102722201179808821:1:3210.00
-00003102722201179809189:1:970.00
-00003102722201179807907:1:1100.00
-00003102722201179802343:1:1000.00
-00003102722201179809189:1:920.00
-00003102722201179801842:1:6990.00
-00003102722201179803042:1:2347.00
-00003102722203019004085:1:48000.00
-00003102722201179809189:1:1350.00
-00003102722201179809189:1:1275.00
-00003102722201179806482:1:100.00
-00003102722201179808939:1:1482.00
-00003102722201179809189:1:1470.00
-00003102722201179809189:1:940.00
-00003102722201179803223:1:9950.00
-00003102722201179812155:1:29998.00
-00003102722201179803299:1:9650.00
-00003102722201179800486:1:958.00
-00003102722201179809037:1:1299.00
-00003102722201179803568:1:782.00
-00003102722201179803299:1:4680.00
-00003102722201179805658:1:4622.00
-00003102722201179803299:1:4680.00
-00003102722201179803299:1:4680.00
-00003102722201179815499:1:4600.00
-00003102722201179806323:1:20000.00
-00003102722201179803299:1:4680.00
-00003102722201179803299:1:4680.00
-00003102722201179803299:1:4680.00
-00003102722201179806229:1:588.00
-00003102722201179803299:1:4680.00
-00003102722201179811335:1:964.00
-00003102722201179813328:1:900.00
-00003102722201179803222:1:15285.00
-00003102722201179806229:1:1080.00
-00003102722201179806850:1:1085.00
-00003102722201179805157:1:1500.00
-00003102722201179813328:1:1000.00
-00003102722201179805157:1:400.00
-00003102722201179813328:1:800.00
-00003102722201179803159:1:16741.00
-00003102722201179804290:1:1913.00
-00003102722203019003900:1:4000.00
-00003102722201179813328:1:5000.00
-00003102722201179803799:1:8853.00
-00003102722201179812282:1:2187.00
-00003102722203019000780:1:1080.00
-00003102722201179809128:1:2018.00
-00003102722203019003900:1:6900.00
-00003102722201179806850:1:852.00
-00003102722201179803799:1:7429.00
-00003102722201179812252:1:8845.00
-00003102722201179802675:1:1467.00
-00003102722201179803602:1:3400.00
-00003102722201179806229:1:199.00
-00003102722201179801774:1:2567.00
-00003102722201179803905:1:9876.00
-00003102722201179803630:1:750.00
-00003102722201179818734:1:5070.00
-00003102722201179806727:1:2981.00
-00003102722201179802710:1:2219.76
-00003102722201179803784:1:4500.00
-00003102722201179813103:1:59000.00
-00003102722201179812104:1:1000.00
-00003102722201179803733:1:985.00
-00003102722201179808241:1:11450.00
-00003102722201179806962:1:1003.00
-00003102722201179811317:1:1083.00
-00003102722201179812394:1:1001.00
-00003102722201179811317:1:566.00
-00003102722201179806825:1:14206.00
-00003102722201179812104:1:998.00
-00003102722201179810251:1:1000.00
-00003102722201179801112:1:1214.00
-00003102722201179815552:1:3564.00
-00003102722201179810251:1:1000.00
-00003102722201179812104:1:999.00
-00003102722201179806825:1:15376.00
-00003102722201179808131:1:1000.00
-00003102722201179809105:1:3480.00
-00003102722201179812104:1:988.00
-00003102722201179811317:1:899.00
-00003102722201179812105:1:5100.00
-00003102722201179812104:1:995.00
-00003102722201179802005:1:9876.59
-00003102722201179808001:1:1000.00
-00003102722201179808001:1:100.00
-00003102722201179818643:1:2997.00
-00003102722201179806962:1:1030.00
-00003102722201179803784:1:4350.00
-00003102722201179810251:1:999.00
-00003102722201179804749:1:1200.00
-00003102722201179806197:1:4985.00
-00003102722201179806331:1:6050.00
-00003102722201179801501:1:446.00
-00003102722201179801152:1:1000.00
-00003102722201179808001:1:1000.00
-00003102722201179809124:1:10200.00
-00003102722201179800486:1:975.00
-00003102722201179803527:1:2581.00
-00003102722201179809124:1:2100.00
-00003102722201179807901:1:3588.00
-00003102722201179803760:1:928.00
-00003102722201179807483:1:490.00
-00003102722201179807682:1:761.00
-00003102722201179806988:1:4362.00
-00003102722201179807682:1:873.00
-00003102722201179803454:1:1364.23
-00003102722201179807682:1:833.00
-00003102722201179803941:1:920.00
-00003102722201179808247:1:1673.00
-00003102722203019003982:1:28650.00
-00003102722201179807682:1:914.00
-00003102722201179808247:1:3596.00
-00003102722201179803941:1:520.00
-00003102722201179808262:1:3587.00
-00003102722201179812133:1:1022.00
-00003102722201179803444:1:2860.00
-00003102722201179803981:1:1000.00
-00003102722201179801633:1:2250.00
-00003102722201179806229:1:99.00
-00003102722201179806229:1:150.00
-00003102722201179806229:1:566.00
-00003102722201179810251:1:1000.00
-00003102722201179811157:1:1056.00
-00003102722201179812143:1:1000.00
-00003102722201179810251:1:999.00
-00003102722201179808575:1:1000.00
-00003102722201179803733:1:967.00
-00003102722201179804246:1:956.00
-00003102722201179805983:1:2950.00
-00003102722201179804246:1:956.00
-00003102722201179808575:1:800.00
-00003102722201179804767:1:1763.00
-00003102722201179801501:1:1039.00
-00003102722201179803249:1:3618.00
-00003102722201179808968:1:3754.00
-00003102722201179808575:1:600.00
-00003102722201179808575:1:800.00
-00003102722201179811313:1:1275.00
-00003102722201179801690:1:4235.00
-00003102722201179801690:1:4482.00
-00003102722201179808575:1:500.00
-00003102722201179808548:1:5628.60
-00003102722201179804721:1:6848.00
-00003102722201179811313:1:947.00
-00003102722201179813999:1:1289.00
-00003102722201179804446:1:2999.00
-00003102722201179812163:1:1700.00
-00003102722201179805658:1:4475.00
-00003102722201179811313:1:1825.00
-00003102722201179817759:1:3300.00
-00003102722201179804052:1:4977.00
-00003102722201179808769:1:1520.00
-00003102722201179812388:1:2000.00
-00003102722201179802624:1:1000.00
-00003102722203019004070:1:1000.00
-00003102722201179802332:1:6101.00
-00003102722201179808931:1:4997.00
-00003102722203019003755:1:995.00
-00003102722201179811335:1:978.00
-00003102722201179814525:1:16300.00
-00003102722201179803008:1:1000.00
-00003102722201179802332:1:7196.00
-00003102722201179803733:1:982.00
-00003102722201179812221:1:3900.00
-00003102722201179806716:1:10500.00
-00003102722201179801821:1:1200.00
-00003102722201179808583:1:1500.00
-00003102722201179808001:1:812.00
-00003102722201179808216:1:996.00
-00003102722201179810266:1:3284.00
-00003102722201179803604:1:999.99
-00003102722201179807425:1:9518.00
-00003102722201179811842:1:1680.00
-00003102722201179803868:1:1000.00
-00003102722201179801657:1:30000.00
-00003102722201179811400:1:3987.00
-00003102722201179806765:1:7210.00
-00003102722201179803868:1:1000.00
-00003102722201179818642:1:970.00
-00003102722201179811318:1:1005.00
-00003102722201179803042:1:13090.00
-00003102722201179805190:1:4704.00
-00003102722201179802710:1:3700.00
-00003102722201179802627:1:3566.00
-00003102722201179808072:1:3720.00
-00003102722201179808920:1:16217.00
-00003102722201179809036:1:862.00
-00003102722201179801717:1:1000.00
-00003102722201179808216:1:500.00
-00003102722201179809036:1:963.00
-00003102722201179803868:1:2000.00
-00003102722201179805190:1:6126.00
-00003102722201179809036:1:1385.00
-00003102722201179803868:1:1000.00
-00003102722201179807900:1:19682.51
-00003102722201179807901:1:4256.00
-00003102722201179806776:1:13.27
-00003102722201179806709:1:2960.00
-00003102722201179807914:1:1377.00
-00003102722201179809036:1:1396.00
-00003102722203019000215:1:1023.00
-00003102722201179806709:1:2328.00
-00003102722201179806709:1:3268.00
-00003102722201179803757:1:1455.00
-00003102722201179806709:1:2695.00
-00003102722201179806776:1:1296.00
-00003102722201179806709:1:4428.00
-00003102722201179813460:1:8056.00
-00003102722201179806709:1:2355.00
-00003102722203019000215:1:16642.00
-00003102722201179806709:1:3346.00
-00003102722201179807914:1:1346.00
-00003102722201179811309:1:1203.00
-00003102722201179806709:1:2548.00
-00003102722201179813100:1:3964.00
-00003102722201179806709:1:2635.00
-00003102722201179805190:1:4208.00
-00003102722201179803868:1:1000.00
-00003102722201179806709:1:2328.00
-00003102722201179812388:1:2000.00
-00003102722201179806709:1:1450.00
-00003102722201179815722:1:7916.00
-00003102722201179806709:1:3265.00
-00003102722201179806942:1:1000.00
-00003102722201179807914:1:2425.00
-00003102722201179815722:1:4053.00
-00003102722201179803868:1:1000.00
-00003102722201179815722:1:4984.00
-00003102722201179815722:1:5947.00
-00003102722201179815722:1:5793.00
-00003102722201179809143:1:900.00
-00003102722201179806983:1:609.00
-00003102722201179809143:1:880.00
-00003102722201179813793:1:2562.00
-00003102722201179803733:1:950.00
-00003102722201179803723:1:3510.00
-00003102722201179806246:1:9998.00
-00003102722201179803723:1:2490.00
-00003102722201179803042:1:716.00
-00003102722203019000469:1:4000.00
-00003102722201179812131:1:10400.00
-00003102722201179810266:1:4360.00
-00003102722201179810251:1:1000.00
-00003102722201179803723:1:3010.00
-00003102722201179802332:1:2804.00
-00003102722201179810251:1:1000.00
-00003102722201179804263:1:10110.00
-00003102722201179806224:1:15000.00
-00003102722201179804263:1:7670.00
-00003102722201179803760:1:997.00
-00003102722201179804263:1:3230.00
-00003102722201179807487:1:1459.80
-00003102722201179808968:1:3382.00
-00003102722201179817783:1:9140.00
-00003102722201179801843:1:500.00
-00003102722201179801135:1:8255.00
-00003102722201179805023:1:4258.00
-00003102722201179804246:1:982.00
-00003102722201179808867:1:999.00
-00003102722201179804246:1:986.00
-00003102722201179801843:1:3500.00
-00003102722201179801121:1:1000.00
-00003102722201179804263:1:2330.00
-00003102722201179801188:1:1000.00
-00003102722203019004072:1:1000.00
-00003102722201179818654:1:873.00
-00003102722203019000328:1:2567.00
-00003102722201179804263:1:895.00
-00003102722201179804263:1:16650.00
-00003102722201179818654:1:873.00
-00003102722201179806256:1:867.00
-00003102722201179818654:1:976.00
-00003102722201179804263:1:7860.00
-00003102722201179815559:1:865.00
-00003102722201179805048:1:5960.00
-00003102722201179815499:1:4600.00
-00003102722201179805048:1:5860.00
-00003102722201179803766:1:15300.00
-00003102722201179806326:1:4392.00
-00003102722201179804290:1:1786.00
-00003102722201179803028:1:1010.05
-00003102722201179804730:1:200.00
-00003102722201179807906:1:12501.00
-00003102722201179801343:1:1500.00
-00003102722201179808891:1:10800.00
-00003102722201179818680:1:3000.00
-00003102722201179802332:1:8599.00
-00003102722201179801343:1:1500.00
-00003102722201179812209:1:992.00
-00003102722201179808440:1:8365.00
-00003102722201179808583:1:7660.00
-00003102722201179808891:1:100.00
-00003102722201179812388:1:4500.00
-00003102722201179802688:1:1320.00
-00003102722201179808583:1:3380.00
-00003102722201179811092:1:9999.00
-00003102722201179802688:1:2240.00
-00003102722201179804052:1:5215.00
-00003102722201179811306:1:1727.00
-00003102722201179818908:1:1000.00
-00003102722201179812165:1:999.00
-00003102722201179818908:1:952.00
-00003102722201179817759:1:990.00
-00003102722201179812165:1:985.00
-00003102722201179808761:1:2468.00
-00003102722201179808241:1:10598.00
-00003102722201179810200:1:1058.00
-00003102722201179802413:1:6200.00
-00003102722201179812209:1:1000.00
-00003102722201179802413:1:5860.00
-00003102722201179812209:1:895.00
-00003102722201179806809:1:1300.00
-00003102722201179802413:1:4800.00
-00003102722201179812209:1:720.00
-00003102722201179801650:1:1000.00
-00003102722201179806809:1:3300.00
-00003102722201179801650:1:1000.00
-00003102722201179806261:1:856.00
-00003102722201179812009:1:3000.00
-00003102722201179811169:1:700.00
-00003102722201179803757:1:1675.00
-00003102722201179801650:1:760.00
-00003102722201179808891:1:900.00
-00003102722201179809102:1:2353.00
-00003102722201179801650:1:730.00
-00003102722201179801650:1:380.00
-00003102722201179801650:1:850.00
-00003102722201179801650:1:770.00
-00003102722201179809102:1:3758.00
-00003102722201179810266:1:4430.00
-00003102722201179801650:1:670.00
-00003102722201179812009:1:10000.00
-00003102722201179806989:1:846.00
-00003102722201179817853:1:1000.00
-00003102722201179812105:1:5498.00
-00003102722201179801633:1:4750.00
-00003102722201179813466:1:1000.00
-00003102722201179818993:1:8500.00
-00003102722201179803042:1:204.00
-00003102722201179804472:1:1000.00
-00003102722201179811095:1:112.00
-00003102722201179804472:1:1000.00
-00003102722201179811152:1:1002.00
-00003102722201179817759:1:3120.00
-00003102722203019000858:1:135.00
-00003102722201179806877:1:1054.00
-00003102722201179812622:1:1200.00
-00003102722201179812128:1:998.00
-00003102722201179812128:1:998.00
-00003102722201179811152:1:850.00
-00003102722201179806246:1:9998.00
-00003102722201179812009:1:29743.00
-00003102722201179807433:1:855.00
-00003102722201179804246:1:23250.00
-00003102722201179812282:1:1998.00
-00003102722201179812009:1:50000.00
-00003102722201179807433:1:942.00
-00003102722201179803943:1:998.00
-00003102722201179812009:1:50000.00
-00003102722201179818649:1:3500.00
-00003102722203019003880:1:3000.00
-00003102722201179803793:1:2290.00
-00003102722201179803793:1:680.00
-00003102722203019000455:1:17998.00
-00003102722201179804203:1:5387.00
-00003102722201179809118:1:7100.00
-00003102722201179813461:1:2580.00
-00003102722201179818619:1:199.00
-00003102722201179809455:1:797.00
-00003102722201179801187:1:1000.00
-00003102722201179809124:1:5100.00
-00003102722201179800486:1:942.00
-00003102722201179808773:1:800.00
-00003102722201179809124:1:4937.00
-00003102722201179807644:1:2318.00
-00003102722201179808732:1:1600.00
-00003102722201179800486:1:4329.00
-00003102722201179808217:1:1000.00
-00003102722201179801187:1:10.00
-00003102722201179808773:1:600.00
-00003102722201179801187:1:10.00
-00003102722201179808217:1:954.00
-00003102722201179807682:1:839.00
-00003102722201179809124:1:5057.00
-00003102722201179808069:1:4550.00
-00003102722201179807682:1:947.00
-00003102722201179817759:1:990.00
-00003102722201179807433:1:4850.00
-00003102722201179808414:1:964.00
-00003102722201179807682:1:996.00
-00003102722201179812622:1:16001.00
-00003102722201179808773:1:3000.00
-00003102722203019003755:1:2325.00
-00003102722201179812622:1:16500.00
-00003102722201179816611:1:1056.00
-00003102722201179812457:1:2654.00
-00003102722203019004085:1:1000.00
-00003102722201179804636:1:1000.00
-00003102722201179808773:1:3000.00
-00003102722201179804246:1:10000.00
-00003102722201179811092:1:2000.00
-00003102722201179812622:1:9120.00
-00003102722201179808829:1:4680.00
-00003102722201179803914:1:17990.00
-00003102722201179808884:1:672.00
-00003102722201179817661:1:10000.00
-00003102722201179808773:1:3100.00
-00003102722201179812622:1:14100.00
-00003102722201179804791:1:939.00
-00003102722201179804768:1:2615.00
-00003102722201179808641:1:988.00
-00003102722201179808773:1:3020.00
-00003102722201179808338:1:15800.00
-00003102722201179808120:1:10.00
-00003102722201179808338:1:14200.00
-00003102722203019003982:1:18900.00
-00003102722201179807303:1:1850.00
-00003102722201179807303:1:25.00
-00003102722201179818981:1:2198.00
-00003102722201179808120:1:29600.00
-00003102722201179807409:1:19000.00
-00003102722201179812062:1:3980.00
-00003102722201179812388:1:4600.00
-00003102722201179806326:1:3762.00
-00003102722201179812137:1:1000.00
-00003102722201179806326:1:3471.00
-00003102722201179817661:1:1000.00
-00003102722201179818648:1:1000.00
-00003102722201179800462:1:999.99
-00003102722201179817661:1:998.00
-00003102722201179808641:1:999.90
-00003102722201179803761:1:12083.00
-00003102722201179817661:1:998.00
-00003102722201179809068:1:853.00
-00003102722201179814488:1:1000.00
-00003102722201179814488:1:5000.00
-00003102722201179813871:1:3105.00
-00003102722201179802344:1:3858.00
-00003102722201179813871:1:2013.00
-00003102722201179813871:1:4931.00
-00003102722201179806765:1:2460.00
-00003102722201179806762:1:5075.00
-00003102722201179806765:1:2680.00
-00003102722203019000195:1:2871.00
-00003102722201179817661:1:997.00
-00003102722201179807644:1:1510.00
-00003102722201179818964:1:10597.00
-00003102722201179810251:1:1000.00
-00003102722201179817661:1:995.00
-00003102722203019004070:1:500.00
-00003102722201179805434:1:482.00
-00003102722201179809455:1:793.00
-00003102722201179817759:1:2900.00
-00003102722201179817661:1:996.00
-00003102722201179807409:1:49999.90
-00003102722201179817661:1:995.00
-00003102722201179808761:1:1276.00
-00003102722201179817661:1:995.00
-00003102722201179817661:1:996.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:996.00
-00003102722201179802005:1:9876.59
-00003102722201179817865:1:999.88
-00003102722203019000878:1:1048.00
-00003102722201179803440:1:18000.00
-00003102722201179811337:1:999.90
-00003102722201179804290:1:1825.00
-00003102722201179817661:1:995.00
-00003102722201179803440:1:22000.00
-00003102722201179817661:1:996.00
-00003102722201179814230:1:700.00
-00003102722201179810206:1:1000.00
-00003102722201179803042:1:356.00
-00003102722201179817661:1:995.00
-00003102722201179817661:1:996.00
-00003102722201179814230:1:300.00
-00003102722201179817661:1:990.00
-00003102722201179806261:1:743.00
-00003102722201179800462:1:840.00
-00003102722201179814223:1:1000.00
-00003102722203019003888:1:2855.00
-00003102722201179817661:1:500.00
-00003102722201179806978:1:3507.00
-00003102722201179801305:1:3955.00
-00003102722201179806969:1:2380.00
-00003102722201179817661:1:800.00
-00003102722201179804246:1:986.00
-00003102722201179808595:1:2385.00
-00003102722201179804246:1:650.00
-00003102722201179806409:1:5000.00
-00003102722201179800462:1:999.99
-00003102722201179808874:1:1000.00
-00003102722203019003888:1:18856.00
-00003102722201179800462:1:943.00
-00003102722201179806409:1:3350.00
-00003102722201179807430:1:762.00
-00003102722201179800462:1:999.99
-00003102722201179802332:1:9855.00
-00003102722201179816177:1:8360.00
-00003102722201179812155:1:30000.00
-00003102722201179808935:1:2180.00
-00003102722201179803440:1:11000.00
-00003102722201179806969:1:2450.00
-00003102722201179802037:1:8844.00
-00003102722201179809101:1:4382.00
-00003102722201179808803:1:8200.00
-00003102722203019004080:1:1000.00
-00003102722201179803440:1:41000.00
-00003102722201179806409:1:9000.00
-00003102722201179812206:1:985.00
-00003102722201179812206:1:895.00
-00003102722203019000300:1:1200.00
-00003102722201179800462:1:999.99
-00003102722201179805928:1:4985.00
-00003102722203019000300:1:20000.00
-00003102722201179813466:1:3500.00
-00003102722201179812206:1:300.00
-00003102722201179801125:1:364.00
-00003102722201179808560:1:8175.00
-00003102722201179807409:1:13000.00
-00003102722201179807802:1:125.00
-00003102722201179812452:1:5000.00
-00003102722201179808560:1:13265.00
-00003102722201179810999:1:997.00
-00003102722201179806969:1:2390.00
-00003102722201179812128:1:999.00
-00003102722201179818611:1:948.00
-00003102722201179812128:1:998.00
-00003102722201179808137:1:980.00
-00003102722201179815499:1:4600.00
-00003102722201179814418:1:1088.00
-00003102722201179816177:1:3620.00
-00003102722201179801694:1:800.00
-00003102722201179803760:1:990.00
-00003102722201179803760:1:880.00
-00003102722201179805434:1:816.00
-00003102722201179817771:1:2638.00
-00003102722201179809075:1:2986.00
-00003102722201179801150:1:12016.00
-00003102722201179808120:1:9300.00
-00003102722201179801184:1:19800.00
-00003102722201179803779:1:7000.00
-00003102722201179803221:1:3866.60
-00003102722201179809185:1:14200.00
-00003102722201179803779:1:12000.00
-00003102722201179806258:1:8990.00
-00003102722201179809185:1:3200.00
-00003102722201179806312:1:1000.00
-00003102722201179809185:1:17000.00
-00003102722201179806312:1:1000.00
-00003102722201179804872:1:3001.00
-00003102722201179808120:1:10000.00
-00003102722201179818605:1:100.00
-00003102722203019003901:1:1880.00
-00003102722201179804052:1:5500.00
-00003102722201179807682:1:717.00
-00003102722201179806312:1:1000.00
-00003102722201179807682:1:815.00
-00003102722201179804266:1:1453.00
-00003102722201179807682:1:683.00
-00003102722201179804266:1:1023.00
-00003102722201179808215:1:3561.00
-00003102722201179804266:1:2346.00
-00003102722201179817800:1:1000.00
-00003102722201179807682:1:800.00
-00003102722201179806725:1:668.00
-00003102722201179806312:1:1000.00
-00003102722201179808120:1:5800.00
-00003102722201179817800:1:3000.00
-00003102722201179809498:1:501.00
-00003102722201179801320:1:3170.00
-00003102722201179808072:1:2951.00
-00003102722201179809129:1:9873.00
-00003102722201179803926:1:15.00
-00003102722201179809129:1:5117.00
-00003102722201179817800:1:6000.00
-00003102722201179809091:1:230.91
-00003102722201179806969:1:2350.00
-00003102722203019000318:1:1000.00
-00003102722201179813139:1:12.00
-00003102722201179803926:1:4230.00
-00003102722201179809450:1:1000.00
-00003102722201179806326:1:2937.00
-00003102722201179809091:1:23962.00
-00003102722201179808439:1:13500.00
-00003102722201179806326:1:4109.00
-00003102722201179806465:1:1000.00
-00003102722201179810251:1:710.00
-00003102722201179808952:1:8878.00
-00003102722201179806312:1:1000.00
-00003102722201179803926:1:753.00
-00003102722201179806465:1:10000.00
-00003102722201179811842:1:10.00
-00003102722201179809026:1:23630.00
-00003102722201179805059:1:3780.00
-00003102722201179808876:1:3229.00
-00003102722201179807433:1:2850.00
-00003102722201179804246:1:965.00
-00003102722201179808876:1:1253.00
-00003102722201179803926:1:2800.00
-00003102722201179808877:1:24000.00
-00003102722201179807433:1:3850.00
-00003102722201179808876:1:1343.00
-00003102722201179808952:1:8686.00
-00003102722201179803926:1:2880.00
-00003102722201179818605:1:900.00
-00003102722201179809196:1:922.00
-00003102722201179818672:1:1000.00
-00003102722201179801582:1:10.00
-00003102722201179809450:1:1000.00
-00003102722201179806409:1:9500.00
-00003102722201179808876:1:4237.00
-00003102722201179804226:1:12588.00
-00003102722201179809450:1:1000.00
-00003102722201179809450:1:1000.00
-00003102722201179809450:1:1000.00
-00003102722201179809450:1:1000.00
-00003102722201179807436:1:970.00
-00003102722201179801588:1:15580.00
-00003102722201179809450:1:1000.00
-00003102722201179801702:1:8800.00
-00003102722201179801588:1:13862.00
-00003102722201179809450:1:1000.00
-00003102722201179809450:1:1000.00
-00003102722201179804238:1:13.00
-00003102722201179809450:1:1000.00
-00003102722201179803930:1:2000.00
-00003102722203019003901:1:2655.00
-00003102722203019003901:1:2358.00
-00003102722201179812452:1:5000.00
-00003102722201179808761:1:486.00
-00003102722203019000652:1:1200.00
-00003102722203019003901:1:835.00
-00003102722203019003901:1:870.00
-00003102722201179818950:1:1235.00
-00003102722203019003901:1:860.00
-00003102722203019003901:1:880.00
-00003102722203019003901:1:850.00
-00003102722201179806261:1:723.00
-00003102722203019003901:1:920.00
-00003102722203019003901:1:900.00
-00003102722203019003901:1:900.00
-00003102722203019003901:1:950.00
-00003102722203019003901:1:920.00
-00003102722201179809022:1:199.00
-00003102722201179808476:1:3472.00
-00003102722201179806715:1:2341.00
-00003102722201179809455:1:792.00
-00003102722201179803186:1:5127.00
-00003102722203019000188:1:8000.00
-00003102722201179806969:1:2350.00
-00003102722201179813462:1:9999.99
-00003102722201179808710:1:1500.00
-00003102722201179803611:1:782.00
-00003102722201179801656:1:3500.00
-00003102722201179803611:1:782.00
-00003102722201179807483:1:985.00
-00003102722201179810203:1:1000.00
-00003102722201179803611:1:782.00
-00003102722201179818920:1:3540.00
-00003102722201179801343:1:1000.00
-00003102722201179818984:1:1000.00
-00003102722201179813462:1:9999.99
-00003102722201179804052:1:1995.00
-00003102722201179813462:1:9999.99
-00003102722201179813462:1:9999.99
-00003102722201179803198:1:11970.00
-00003102722203019003947:1:2020.00
-00003102722201179813462:1:14999.99
-00003102722203019003947:1:1726.00
-00003102722201179806488:1:3000.00
-00003102722203019003880:1:4900.00
-00003102722201179812131:1:820.00
-00003102722201179803795:1:815.88
-00003102722201179815499:1:4500.00
-00003102722201179803795:1:931.00
-00003102722201179803795:1:409.00
-00003102722201179808941:1:1000.00
-00003102722201179803795:1:1031.00
-00003102722201179805154:1:1050.00
-00003102722201179803795:1:512.00
-00003102722201179808828:1:499.00
-00003102722201179808941:1:1000.00
-00003102722201179803795:1:395.00
-00003102722201179803795:1:7031.00
-00003102722201179815580:1:985.00
-00003102722201179803795:1:2160.00
-00003102722201179803668:1:2994.00
-00003102722201179808941:1:1000.00
-00003102722201179808941:1:500.00
-00003102722201179818920:1:2956.00
-00003102722201179812251:1:1068.00
-00003102722201179803701:1:260.00
-00003102722201179812385:1:5000.00
-00003102722201179812385:1:8100.00
-00003102722201179803444:1:2889.00
-00003102722201179808807:1:20000.00
-00003102722201179804052:1:3465.00
-00003102722201179803444:1:2580.00
-00003102722201179811466:1:3000.00
-00003102722201179806466:1:999.00
-00003102722201179806466:1:998.00
-00003102722201179811466:1:7000.00
-00003102722201179807303:1:800.00
-00003102722201179811466:1:6000.00
-00003102722201179811488:1:2012.00
-00003102722201179808026:1:25555.00
-00003102722201179803998:1:1000.00
-00003102722201179806326:1:2807.00
-00003102722201179811466:1:1000.00
-00003102722201179806326:1:3762.00
-00003102722201179812395:1:8800.00
-00003102722201179811466:1:1000.00
-00003102722201179811466:1:1000.00
-00003102722201179812395:1:2888.00
-00003102722201179811466:1:1000.00
-00003102722201179811466:1:1000.00
-00003102722201179812395:1:11000.00
-00003102722201179811466:1:500.00
-00003102722201179809034:1:9568.00
-00003102722201179812395:1:9900.00
-00003102722201179811133:1:199.00
-00003102722201179812395:1:9990.00
-00003102722201179817866:1:999.00
-00003102722201179811133:1:1000.00
-00003102722201179817866:1:999.00
-00003102722201179812395:1:4999.90
-00003102722203019003874:1:1078.80
-00003102722201179817866:1:999.00
-00003102722201179812395:1:9900.00
-00003102722201179806261:1:675.00
-00003102722201179806261:1:795.00
-00003102722201179809185:1:2000.00
-00003102722201179811133:1:8800.00
-00003102722201179804052:1:3370.00
-00003102722203019003880:1:3100.00
-00003102722201179808223:1:2369.00
-00003102722201179806954:1:2006.00
-00003102722201179807488:1:896.00
-00003102722201179815499:1:4500.00
-00003102722201179803782:1:4693.00
-00003102722201179807498:1:1000.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:999.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:997.00
-00003102722201179817865:1:560.00
-00003102722201179811307:1:2100.00
-00003102722201179817661:1:995.00
-00003102722201179817661:1:996.00
-00003102722201179817661:1:998.00
-00003102722201179817661:1:990.00
-00003102722203019003751:1:4319.00
-00003102722201179817661:1:956.00
-00003102722203019003751:1:5319.00
-00003102722203019003751:1:4693.00
-00003102722201179817661:1:1000.00
-00003102722201179817661:1:985.00
-00003102722201179808580:1:2010.00
-00003102722201179818640:1:1050.00
-00003102722203019003979:1:20000.00
-00003102722201179818641:1:1050.00
-00003102722201179802780:1:199.00
-00003102722201179817370:1:4999.99
-00003102722201179803905:1:1009.00
-00003102722201179806326:1:3617.00
-00003102722201179819018:1:1000.00
-00003102722201179819018:1:1000.00
-00003102722201179803552:1:895.00
-00003102722201179808588:1:4498.00
-00003102722201179809185:1:1000.00
-00003102722203019003874:1:1070.00
-00003102722201179802047:1:9500.00
-00003102722201179804721:1:2654.00
-00003102722201179804721:1:9872.00
-00003102722201179804246:1:986.00
-00003102722201179819003:1:6000.00
-00003102722201179809172:1:1182.00
-00003102722201179819003:1:982.00
-00003102722201179806261:1:813.00
-00003102722201179812255:1:1000.00
-00003102722201179806258:1:3550.00
-00003102722201179808561:1:990.00
-00003102722201179803733:1:994.00
-00003102722201179803780:1:1000.00
-00003102722201179804767:1:2317.00
-00003102722201179812151:1:1000.00
-00003102722201179806800:1:3130.00
-00003102722201179806483:1:1000.00
-00003102722201179807483:1:485.00
-00003102722201179803287:1:400.00
-00003102722201179803287:1:2750.00
-00003102722201179802739:1:8958.50
-00003102722201179803630:1:327.00
-00003102722201179805426:1:7960.00
-00003102722201179817759:1:990.00
-00003102722201179808476:1:3343.00
-00003102722201179817759:1:3880.00
-00003102722203019000780:1:6930.00
-00003102722201179803761:1:813.00
-00003102722203019000780:1:14770.00
-00003102722201179807498:1:3500.00
-00003102722203019000780:1:20050.00
-00003102722201179804715:1:4000.00
-00003102722201179816617:1:3000.00
-00003102722201179804246:1:968.00
-00003102722201179803174:1:6000.00
-00003102722201179806261:1:785.00
-00003102722201179817759:1:990.00
-00003102722201179811308:1:4500.00
-00003102722201179803761:1:983.00
-00003102722201179812206:1:970.00
-00003102722201179808966:1:1000.00
-00003102722201179812206:1:869.00
-00003102722201179811443:1:2000.00
-00003102722201179808966:1:2000.00
-00003102722201179803733:1:972.00
-00003102722201179812206:1:760.00
-00003102722201179815565:1:1231.11
-00003102722201179812120:1:5246.00
-00003102722201179808245:1:8673.00
-00003102722201179806241:1:4650.00
-00003102722201179818964:1:953.00
-00003102722201179810954:1:1000.00
-00003102722201179806261:1:734.00
-00003102722201179813933:1:996.00
-00003102722201179807901:1:3548.00
-00003102722201179803761:1:963.00
-00003102722201179811443:1:7455.00
-00003102722201179804636:1:13998.00
-00003102722201179811842:1:2580.00
-00003102722201179818680:1:5050.00
-00003102722201179817759:1:3010.00
-00003102722201179818609:1:4351.00
-00003102722201179812165:1:1000.00
-00003102722201179803780:1:2950.00
-00003102722201179818963:1:9100.00
-00003102722201179804290:1:2693.00
-00003102722201179803761:1:823.00
-00003102722201179812123:1:979.00
-00003102722201179803986:1:945.00
-00003102722201179815587:1:12100.00
-00003102722201179817451:1:1000.00
-00003102722203019000468:1:1206.00
-00003102722201179804290:1:562.00
-00003102722201179817451:1:890.00
-00003102722201179802344:1:3990.50
-00003102722201179803761:1:781.00
-00003102722201179803540:1:3150.00
-00003102722201179813974:1:1968.00
-00003102722203019000320:1:199.00
-00003102722201179812165:1:1000.00
-00003102722201179812165:1:1000.00
-00003102722201179803538:1:1685.00
-00003102722201179803540:1:1850.00
-00003102722201179807094:1:383.00
-00003102722201179803538:1:2658.00
-00003102722201179812165:1:1000.00
-00003102722201179803538:1:2694.00
-00003102722201179805983:1:1966.00
-00003102722201179803538:1:1584.00
-00003102722201179806105:1:455.00
-00003102722201179803901:1:7823.00
-00003102722201179817451:1:968.00
-00003102722201179806105:1:574.00
-00003102722201179804767:1:3277.00
-00003102722201179803538:1:1568.00
-00003102722201179803538:1:1895.00
-00003102722201179806240:1:1000.00
-00003102722201179811408:1:997.00
-00003102722201179807997:1:11235.00
-00003102722201179803140:1:5000.00
-00003102722201179806197:1:3950.00
-00003102722201179818670:1:800.00
-00003102722201179818688:1:1000.00
-00003102722201179811408:1:1723.00
-00003102722201179803140:1:8000.00
-00003102722201179805928:1:4988.00
-00003102722201179811408:1:2803.00
-00003102722203019000101:1:11400.00
-00003102722201179806197:1:3976.00
-00003102722201179801650:1:635.00
-00003102722201179800899:1:996.00
-00003102722201179800899:1:15638.00
-00003102722201179801650:1:490.00
-00003102722201179806197:1:1630.00
-00003102722201179806309:1:1000.00
-00003102722201179801650:1:550.00
-00003102722201179802627:1:8220.00
-00003102722201179801650:1:840.00
-00003102722201179801650:1:770.00
-00003102722201179804246:1:965.00
-00003102722201179817403:1:1000.00
-00003102722201179811131:1:5080.00
-00003102722201179812209:1:998.00
-00003102722201179803183:1:5100.00
-00003102722201179804768:1:3256.00
-00003102722201179812120:1:516.00
-00003102722201179815499:1:3670.00
-00003102722201179807908:1:53.00
-00003102722201179808939:1:842.00
-00003102722201179812160:1:5000.00
-00003102722201179807908:1:102.00
-00003102722201179807908:1:73.00
-00003102722201179807908:1:103.00
-00003102722201179808821:1:3896.33
-00003102722201179808990:1:1840.00
-00003102722201179807498:1:5796.00
-00003102722201179809091:1:48633.00
-00003102722201179802710:1:2692.83
-00003102722201179808561:1:998.80
-00003102722201179807947:1:1000.00
-00003102722201179808821:1:3456.89
-00003102722201179806197:1:1505.00
-00003102722201179808778:1:1800.00
-00003102722201179817759:1:3980.00
-00003102722201179803568:1:1893.00
-00003102722201179801759:1:2350.01
-00003102722201179806989:1:463.00
-00003102722201179802037:1:8699.00
-00003102722201179806978:1:3451.00
-00003102722201179808946:1:1857.00
-00003102722201179811317:1:1455.00
-00003102722201179808946:1:1365.80
-00003102722201179808960:1:23189.00
-00003102722201179803778:1:12030.00
-00003102722203019000301:1:980.00
-00003102722201179808946:1:1936.60
-00003102722201179811317:1:966.00
-00003102722201179803249:1:3318.00
-00003102722201179801843:1:617.00
-00003102722201179801843:1:617.00
-00003102722201179808767:1:1000.00
-00003102722201179801843:1:617.00
-00003102722201179808053:1:3952.00
-00003102722201179803790:1:1000.00
-00003102722201179800474:1:938.00
-00003102722201179803792:1:3807.00
-00003102722201179808700:1:1500.00
-00003102722201179808053:1:4460.00
-00003102722201179803020:1:1280.00
-00003102722201179807909:1:1983.00
-00003102722201179813147:1:5413.00
-00003102722201179808960:1:26879.00
-00003102722201179801633:1:5250.00
-00003102722201179801118:1:1000.00
-00003102722201179803940:1:16799.00
-00003102722201179804782:1:4572.00
-00003102722201179808769:1:5160.00
-00003102722201179804246:1:962.00
-00003102722201179808135:1:9872.00
-00003102722201179812155:1:24999.80
-00003102722201179808135:1:8658.00
-00003102722201179802693:1:12380.00
-00003102722201179803733:1:993.00
-00003102722201179803941:1:998.00
-00003102722201179818609:1:989.00
-00003102722203019000652:1:8000.00
-00003102722201179818609:1:896.00
-00003102722201179806727:1:5982.00
-00003102722201179818609:1:965.00
-00003102722201179818609:1:986.00
-00003102722201179806727:1:3947.00
-00003102722201179818609:1:898.00
-00003102722201179811153:1:1003.00
-00003102722201179803791:1:1000.00
-00003102722201179803979:1:937.00
-00003102722201179818609:1:956.00
-00003102722201179812282:1:4878.00
-00003102722201179818966:1:5000.00
-00003102722201179818609:1:1315.00
-00003102722201179801159:1:1000.00
-00003102722201179805044:1:2998.00
-00003102722201179808488:1:1000.00
-00003102722201179811337:1:12500.00
-00003102722203019003900:1:6300.00
-00003102722203019003900:1:3772.00
-00003102722201179800899:1:6982.00
-00003102722201179811270:1:1053.00
-00003102722201179803986:1:966.00
-00003102722201179807802:1:7425.00
-00003102722201179812131:1:790.00
-00003102722201179806925:1:5239.00
-00003102722201179803799:1:533.00
-00003102722201179808941:1:1000.00
-00003102722201179804052:1:2070.00
-00003102722201179811400:1:3966.00
-00003102722201179803606:1:100.00
-00003102722201179808941:1:1000.00
-00003102722201179802625:1:1000.00
-00003102722201179809452:1:4520.00
-00003102722201179811220:1:4589.00
-00003102722201179803520:1:12300.00
-00003102722201179817451:1:975.00
-00003102722201179808941:1:1000.00
-00003102722203019003986:1:100.00
-00003102722201179803974:1:1000.00
-00003102722201179803223:1:2975.00
-00003102722201179805421:1:7576.00
-00003102722201179810954:1:5013.00
-00003102722201179803223:1:8750.00
-00003102722201179809115:1:3500.00
-00003102722201179818790:1:899.00
-00003102722201179803186:1:3621.00
-00003102722203019003991:1:1026.00
-00003102722201179811960:1:1055.51
-00003102722201179812063:1:2850.00
-00003102722201179808560:1:10950.00
-00003102722201179818901:1:1100.00
-00003102722201179817866:1:993.00
-00003102722201179803568:1:1124.00
-00003102722201179817866:1:993.00
-00003102722201179813870:1:10.00
-00003102722201179808160:1:1000.00
-00003102722203019000792:1:1047.00
-00003102722201179807674:1:181.00
-00003102722201179801696:1:19823.00
-00003102722201179812128:1:969.00
-00003102722201179811141:1:1003.00
-00003102722201179812128:1:569.00
-00003102722201179808960:1:21879.00
-00003102722201179809452:1:3285.00
-00003102722201179809145:1:1000.00
-00003102722201179804246:1:10000.00
-00003102722201179803733:1:976.00
-00003102722201179809115:1:10000.00
-00003102722201179812151:1:3488.00
-00003102722201179808980:1:6080.00
-00003102722201179804442:1:4127.00
-00003102722201179800474:1:952.00
-00003102722201179804442:1:5160.00
-00003102722201179804442:1:5723.00
-00003102722201179806197:1:1500.00
-00003102722201179803237:1:15016.00
-00003102722201179803616:1:1000.00
-00003102722201179803606:1:4980.00
-00003102722201179817693:1:1000.00
-00003102722201179818608:1:1000.00
-00003102722201179803606:1:5000.00
-00003102722201179806825:1:125.00
-00003102722201179810206:1:1000.00
-00003102722201179806825:1:108.00
-00003102722201179818619:1:898.00
-00003102722201179803683:1:3175.00
-00003102722201179806825:1:146.00
-00003102722201179806197:1:200.00
-00003102722201179806825:1:105.00
-00003102722201179818966:1:4398.00
-00003102722201179810206:1:1000.00
-00003102722201179806825:1:101.00
-00003102722201179806825:1:223.00
-00003102722201179806197:1:190.00
-00003102722201179803299:1:4820.00
-00003102722201179809452:1:3300.00
-00003102722201179803299:1:3970.00
-00003102722201179809452:1:1700.00
-00003102722201179802694:1:6550.00
-00003102722201179803299:1:885.00
-00003102722201179802694:1:5585.00
-00003102722201179803299:1:6170.00
-00003102722201179803299:1:3390.00
-00003102722201179811270:1:152.00
-00003102722201179806258:1:2280.00
-00003102722201179811440:1:2000.00
-00003102722201179803299:1:5150.00
-00003102722201179817665:1:3908.52
-00003102722201179811413:1:7634.00
-00003102722201179803870:1:14566.00
-00003102722201179803299:1:5720.00
-00003102722201179803299:1:8590.00
-00003102722201179803870:1:10083.00
-00003102722201179812129:1:8398.00
-00003102722201179803299:1:8510.00
-00003102722201179803299:1:4260.00
-00003102722201179806197:1:800.00
-00003102722201179811270:1:251.00
-00003102722201179801633:1:5350.00
-00003102722201179804242:1:13770.00
-00003102722201179812172:1:240.00
-00003102722201179806197:1:600.00
-00003102722201179810206:1:8200.00
-00003102722201179818681:1:5001.00
-00003102722201179811270:1:305.00
-00003102722201179812172:1:241.00
-00003102722201179812172:1:241.00
-00003102722201179801635:1:5173.00
-00003102722201179817419:1:1100.00
-00003102722201179812172:1:569.00
-00003102722201179803299:1:3280.00
-00003102722201179803602:1:3500.00
-00003102722201179802026:1:4294.00
-00003102722201179801159:1:6895.00
-00003102722201179812172:1:241.00
-00003102722201179808761:1:2584.60
-00003102722201179812172:1:395.00
-00003102722201179804721:1:11850.00
-00003102722201179811319:1:1006.00
-00003102722201179812172:1:592.00
-00003102722201179802344:1:3880.00
-00003102722201179804888:1:1310.00
-00003102722201179802026:1:6274.00
-00003102722201179812172:1:356.00
-00003102722201179800790:1:448.00
-00003102722201179812172:1:376.00
-00003102722201179802344:1:3550.00
-00003102722201179800790:1:2637.00
-00003102722201179801774:1:3957.00
-00003102722201179804721:1:12074.00
-00003102722201179812172:1:368.00
-00003102722201179812172:1:403.00
-00003102722201179812172:1:269.00
-00003102722201179806261:1:784.00
-00003102722201179805184:1:10238.00
-00003102722201179808850:1:3562.00
-00003102722201179805184:1:4213.00
-00003102722201179802645:1:3759.00
-00003102722201179806325:1:1000.00
-00003102722201179808878:1:2988.00
-00003102722201179808878:1:5988.00
-00003102722201179808878:1:6988.00
-00003102722201179806240:1:1000.00
-00003102722201179813461:1:2856.00
-00003102722201179808878:1:6688.00
-00003102722201179802346:1:100.00
-00003102722201179803733:1:989.00
-00003102722201179802851:1:200.00
-00003102722201179804888:1:3690.00
-00003102722201179808561:1:990.00
-00003102722201179802851:1:1000.00
-00003102722201179818623:1:1095.00
-00003102722201179802038:1:5209.00
-00003102722201179817759:1:990.00
-00003102722201179802026:1:862.00
-00003102722201179806229:1:2111.00
-00003102722201179806229:1:588.00
-00003102722201179806229:1:255.00
-00003102722201179813698:1:1000.00
-00003102722201179804768:1:3567.00
-00003102722203019004080:1:42368.00
-00003102722201179808293:1:400.00
-00003102722201179817439:1:1000.00
-00003102722201179802037:1:11020.00
-00003102722201179808488:1:18800.00
-00003102722201179807980:1:5321.70
-00003102722201179807980:1:5321.80
-00003102722201179807980:1:5321.80
-00003102722201179807980:1:5321.80
-00003102722201179816170:1:1027.00
-00003102722201179805048:1:9760.00
-00003102722201179808160:1:2000.00
-00003102722203019003986:1:5000.00
-00003102722201179813793:1:3086.00
-00003102722201179813933:1:1987.00
-00003102722201179808829:1:3200.00
-00003102722201179808829:1:2785.00
-00003102722201179802027:1:4820.00
-00003102722201179808172:1:751.00
-00003102722201179818609:1:989.00
-00003102722201179811091:1:1050.00
-00003102722201179818609:1:896.00
-00003102722201179818609:1:965.00
-00003102722201179818609:1:998.00
-00003102722201179811961:1:1000.00
-00003102722201179818609:1:967.00
-00003102722201179802193:1:926.00
-00003102722201179818609:1:998.00
-00003102722201179802193:1:973.00
-00003102722201179818609:1:1185.00
-00003102722201179811961:1:1000.00
-00003102722203019003898:1:1009.80
-00003102722201179817685:1:1100.00
-00003102722203019000455:1:10001.00
-00003102722201179803780:1:3200.00
-00003102722201179808761:1:2548.00
-00003102722203019000455:1:12001.00
-00003102722201179803640:1:3596.00
-00003102722201179813252:1:8514.00
-00003102722201179806700:1:1988.00
-00003102722201179801748:1:369.00
-00003102722201179804767:1:723.00
-00003102722201179803020:1:965.00
-00003102722201179801748:1:753.00
-00003102722201179806700:1:2688.00
-00003102722201179806700:1:3288.00
-00003102722201179810266:1:3270.00
-00003102722201179806204:1:6283.00
-00003102722201179806204:1:6791.00
-00003102722201179817759:1:3320.00
-00003102722201179803733:1:979.00
-00003102722201179804052:1:5070.00
-00003102722201179803635:1:1000.00
-00003102722201179811103:1:16500.00
-00003102722201179803454:1:2863.94
-00003102722201179803635:1:756.00
-00003102722201179808750:1:1240.00
-00003102722201179817665:1:4106.43
-00003102722201179803568:1:1852.00
-00003102722201179803701:1:560.00
-00003102722201179812251:1:19900.00
-00003102722201179803020:1:886.00
-00003102722201179806707:1:9895.00
-00003102722201179806755:1:6533.00
-00003102722201179813935:1:4599.00
-00003102722201179814525:1:24700.00
-00003102722201179814525:1:1108.00
-00003102722201179814525:1:1330.00
-00003102722201179800494:1:8865.00
-00003102722201179814525:1:960.00
-00003102722201179800494:1:9358.00
-00003102722201179805182:1:2005.00
-00003102722201179806822:1:1173.00
-00003102722201179803596:1:3645.00
-00003102722201179800494:1:895.00
-00003102722201179806901:1:1200.00
-00003102722201179800494:1:968.00
-00003102722201179808867:1:4128.00
-00003102722201179800494:1:887.00
-00003102722201179810251:1:1000.00
-00003102722201179801798:1:1000.00
-00003102722201179806762:1:5042.00
-00003102722201179802697:1:599.00
-00003102722201179802697:1:599.00
-00003102722201179801798:1:15270.00
-00003102722201179818950:1:1412.00
-00003102722201179809088:1:1100.00
-00003102722201179801798:1:18582.00
-00003102722201179803558:1:2987.45
-00003102722201179802742:1:4024.00
-00003102722201179804768:1:3210.00
-00003102722201179810251:1:1000.00
-00003102722201179807840:1:1885.00
-00003102722201179807433:1:5730.00
-00003102722201179810251:1:1000.00
-00003102722201179807840:1:2101.00
-00003102722201179802344:1:3688.00
-00003102722201179812132:1:1296.00
-00003102722201179809105:1:2780.00
-00003102722201179812132:1:3184.00
-00003102722201179808761:1:2276.00
-00003102722201179808824:1:3845.00
-00003102722201179818663:1:3500.00
-00003102722201179802344:1:3998.50
-00003102722201179818663:1:3880.00
-00003102722201179808867:1:3982.00
-00003102722201179803733:1:966.00
-00003102722201179803983:1:1000.00
-00003102722201179812151:1:947.00
-00003102722201179803122:1:1000.00
-00003102722201179803760:1:1000.00
-00003102722201179803122:1:9300.00
-00003102722201179808087:1:6026.99
-00003102722201179805131:1:9780.00
-00003102722201179808034:1:6280.00
-00003102722201179813870:1:1031.00
-00003102722201179819001:1:1000.00
-00003102722201179806451:1:1000.00
-00003102722201179801798:1:2538.00
-00003102722201179808491:1:3422.00
-00003102722201179811494:1:5200.00
-00003102722201179803904:1:1000.00
-00003102722201179802710:1:4300.00
-00003102722201179803941:1:5300.00
-00003102722201179806825:1:14208.00
-00003102722201179805131:1:9850.00
-00003102722201179806261:1:687.00
-00003102722201179806825:1:4608.00
-00003102722201179805131:1:9766.00
-00003102722201179805983:1:2135.00
-00003102722201179805131:1:9588.00
-00003102722201179803904:1:2000.00
-00003102722201179803100:1:8100.00
-00003102722201179806825:1:5402.00
-00003102722201179806105:1:684.00
-00003102722201179806105:1:685.00
-00003102722201179806764:1:1050.00
-00003102722201179806825:1:6805.00
-00003102722201179810201:1:1000.00
-00003102722201179802870:1:1000.00
-00003102722201179814238:1:1000.00
-00003102722203019003880:1:3760.00
-00003102722201179807902:1:10000.00
-00003102722201179808161:1:1000.00
-00003102722201179807645:1:2300.00
-00003102722201179804052:1:5085.00
-00003102722201179803782:1:5683.00
-00003102722201179803441:1:7896.50
-00003102722201179803020:1:1309.00
-00003102722201179808935:1:2078.00
-00003102722201179803100:1:8400.00
-00003102722201179806932:1:5894.00
-00003102722201179803152:1:998.00
-00003102722201179818851:1:1000.00
-00003102722201179803100:1:8300.00
-00003102722201179807794:1:1000.00
-00003102722201179802890:1:8962.00
-00003102722201179801715:1:1012.00
-00003102722201179801821:1:1000.00
-00003102722201179803619:1:1000.00
-00003102722201179803237:1:14813.00
-00003102722201179807963:1:13753.00
-00003102722201179805427:1:2860.00
-00003102722201179807794:1:1299.00
-00003102722201179801150:1:6773.00
-00003102722201179805427:1:840.00
-00003102722201179803906:1:1000.00
-00003102722201179817759:1:990.00
-00003102722201179803410:1:1000.00
-00003102722201179803042:1:937.00
-00003102722201179808476:1:3427.00
-00003102722201179804749:1:4000.00
-00003102722201179803410:1:880.00
-00003102722201179803979:1:834.00
-00003102722201179811481:1:199.00
-00003102722201179818965:1:4630.00
-00003102722201179812325:1:1001.00
-00003102722201179817759:1:990.00
-00003102722201179806776:1:28917.00
-00003102722201179803410:1:2880.00
-00003102722201179809128:1:688.00
-00003102722201179803410:1:5360.00
-00003102722201179813999:1:2845.00
-00003102722201179808646:1:5960.00
-00003102722201179802675:1:365.00
-00003102722201179806261:1:813.00
-00003102722201179815638:1:39850.00
-00003102722201179817702:1:1000.00
-00003102722201179806216:1:986.00
-00003102722201179812573:1:1000.00
-00003102722201179803454:1:2965.43
-00003102722201179804872:1:2998.00
-00003102722201179817759:1:4120.00
-00003102722201179807802:1:6745.00
-00003102722203019003862:1:4375.50
-00003102722201179803774:1:1246.00
-00003102722201179817866:1:996.00
-00003102722201179817866:1:996.00
-00003102722201179813461:1:1852.00
-00003102722201179818654:1:2900.00
-00003102722201179808646:1:988.00
-00003102722201179811279:1:1131.00
-00003102722201179811481:1:1999.00
-00003102722201179818654:1:964.00
-00003102722201179818654:1:964.00
-00003102722201179804290:1:3547.00
-00003102722201179803986:1:998.00
-00003102722201179806765:1:3230.00
-00003102722201179806725:1:430.00
-00003102722201179818654:1:964.00
-00003102722201179807908:1:7533.00
-00003102722201179800498:1:5000.00
-00003102722201179806765:1:4386.00
-00003102722201179806764:1:10699.00
-00003102722201179801122:1:1770.00
-00003102722201179803237:1:14817.00
-00003102722201179807981:1:985.00
-00003102722201179805044:1:2397.00
-00003102722201179803733:1:959.00
-00003102722201179811319:1:7900.00
-00003102722201179811400:1:6897.00
-00003102722201179814493:1:1000.00
-00003102722201179811319:1:5600.00
-00003102722201179803640:1:4812.00
-00003102722201179811095:1:2259.00
-00003102722201179808113:1:5836.00
-00003102722201179804792:1:1396.00
-00003102722201179802666:1:9950.00
-00003102722201179811319:1:8600.00
-00003102722201179803905:1:9948.00
-00003102722201179803640:1:4930.00
-00003102722201179813930:1:2186.00
-00003102722201179811319:1:9200.00
-00003102722201179806764:1:6700.00
-00003102722201179805048:1:8960.00
-00003102722201179804792:1:2586.00
-00003102722201179805048:1:6860.00
-00003102722201179807438:1:1018.00
-00003102722201179811117:1:25997.00
-00003102722201179812105:1:11200.00
-00003102722201179801108:1:1000.00
-00003102722201179806825:1:15306.00
-00003102722201179805020:1:1000.00
-00003102722201179806825:1:7816.00
-00003102722201179805435:1:1000.00
-00003102722201179806764:1:2850.00
-00003102722201179801823:1:1000.00
-00003102722201179806825:1:7642.00
-00003102722201179808040:1:4967.00
-00003102722201179806825:1:5817.00
-00003102722201179802776:1:13641.00
-00003102722201179806825:1:5742.00
-00003102722201179808248:1:3672.00
-00003102722203019000830:1:1000.00
-00003102722201179805020:1:134.00
-00003102722201179817417:1:20000.00
-00003102722201179812145:1:1000.00
-00003102722201179808040:1:4260.00
-00003102722201179806825:1:3560.00
-00003102722201179806229:1:1800.00
-00003102722201179817759:1:4110.00
-00003102722201179802666:1:9995.00
-00003102722201179806825:1:8066.00
-00003102722201179806229:1:2000.00
-00003102722201179801650:1:835.00
-00003102722201179807909:1:3247.00
-00003102722201179801122:1:2100.00
-00003102722201179808040:1:6835.00
-00003102722201179801650:1:944.00
-00003102722201179801650:1:330.00
-00003102722201179801146:1:9975.00
-00003102722201179802710:1:1390.80
-00003102722201179817417:1:18000.00
-00003102722201179801650:1:640.00
-00003102722201179809455:1:902.00
-00003102722201179801146:1:8600.00
-00003102722201179802852:1:1000.00
-00003102722201179806229:1:677.00
-00003102722201179803736:1:9996.00
-00003102722201179804768:1:3216.00
-00003102722201179807935:1:1000.00
-00003102722201179817417:1:19000.00
-00003102722201179801146:1:11575.00
-00003102722201179806764:1:23000.00
-00003102722201179808040:1:7035.00
-00003102722201179808040:1:4862.00
-00003102722201179807935:1:993.00
-00003102722201179803065:1:1000.00
-00003102722201179806216:1:856.00
-00003102722201179806764:1:14960.00
-00003102722201179802651:1:4918.00
-00003102722201179806229:1:1888.80
-00003102722201179806229:1:1000.00
-00003102722201179806229:1:630.00
-00003102722201179802852:1:13500.00
-00003102722201179812282:1:3023.00
-00003102722201179808253:1:3685.00
-00003102722201179808859:1:9100.00
-00003102722201179808253:1:1873.00
-00003102722201179808623:1:199.00
-00003102722201179803733:1:987.00
-00003102722201179801633:1:4750.00
-00003102722201179817417:1:5000.00
-00003102722201179809455:1:902.00
-00003102722201179808939:1:942.00
-00003102722201179806764:1:23167.00
-00003102722201179813199:1:830.00
-00003102722201179803020:1:779.00
-00003102722201179803042:1:173.00
-00003102722201179817417:1:6000.00
-00003102722201179809452:1:5698.00
-00003102722201179806764:1:23028.00
-00003102722203019000785:1:986.00
-00003102722201179812131:1:860.00
-00003102722201179811222:1:5268.00
-00003102722201179812554:1:1010.00
-00003102722201179803986:1:955.00
-00003102722201179806261:1:809.00
-00003102722201179808863:1:9755.00
-00003102722201179802852:1:11250.00
-00003102722201179818611:1:984.00
-00003102722201179818611:1:985.00
-00003102722201179817665:1:2906.31
-00003102722201179808863:1:12100.00
-00003102722201179805131:1:9960.00
-00003102722201179805131:1:9770.00
-00003102722201179805131:1:9540.00
-00003102722201179805131:1:9322.00
-00003102722201179804440:1:5746.00
-00003102722201179805444:1:1000.00
-00003102722201179804440:1:6530.00
-00003102722201179809196:1:1900.00
-00003102722201179804440:1:4750.00
-00003102722201179818680:1:100.00
-00003102722201179804440:1:5780.00
-00003102722201179804052:1:4260.00
-00003102722201179804767:1:3417.00
-00003102722201179817854:1:8050.00
-00003102722201179801690:1:59.36
-00003102722201179818686:1:1000.00
-00003102722201179818686:1:10000.00
-00003102722201179803631:1:1000.00
-00003102722201179803157:1:8536.00
-00003102722201179803157:1:8550.00
-00003102722201179805374:1:4800.00
-00003102722201179808935:1:136.00
-00003102722201179801690:1:3256.80
-00003102722201179802331:1:2998.00
-00003102722201179803020:1:756.00
-00003102722201179818964:1:3967.00
-00003102722201179801159:1:6244.44
-00003102722201179810200:1:968.00
-00003102722201179811335:1:893.00
-00003102722203019000858:1:1000.00
-00003102722201179803100:1:6700.00
-00003102722201179806954:1:900.60
-00003102722201179806925:1:7716.00
-00003102722201179810200:1:937.00
-00003102722201179812557:1:1000.00
-00003102722201179806954:1:1688.74
-00003102722203019000789:1:1001.00
-00003102722201179818645:1:1350.00
-00003102722201179806316:1:11500.00
-00003102722201179803904:1:700.00
-00003102722201179818950:1:1886.00
-00003102722201179812557:1:8550.00
-00003102722201179813148:1:20117.00
-00003102722201179801668:1:9300.00
-00003102722201179806954:1:600.06
-00003102722201179806256:1:999.00
-00003102722201179818964:1:921.00
-00003102722201179801700:1:5123.00
-00003102722201179813876:1:2515.00
-00003102722201179806466:1:5002.00
-00003102722201179809105:1:4320.00
-00003102722201179806954:1:1668.74
-00003102722201179803782:1:3526.00
-00003102722203019000830:1:38200.00
-00003102722201179818962:1:900.00
-00003102722201179811540:1:4800.00
-00003102722201179818962:1:806.00
-00003102722201179803739:1:1000.00
-00003102722201179812557:1:8550.00
-00003102722201179817854:1:1000.00
-00003102722201179808968:1:3465.00
-00003102722201179806954:1:1006.00
-00003102722201179807644:1:1712.00
-00003102722201179818962:1:800.00
-00003102722201179803793:1:7100.00
-00003102722201179809453:1:500.00
-00003102722201179804756:1:1200.00
-00003102722201179808938:1:30.00
-00003102722201179800689:1:3655.00
-00003102722201179813132:1:5234.00
-00003102722201179806765:1:3820.00
-00003102722201179800689:1:6033.00
-00003102722201179803733:1:948.00
-00003102722201179809455:1:897.00
-00003102722201179801167:1:35675.00
-00003102722201179801167:1:15120.00
-00003102722201179809452:1:4258.00
-00003102722201179804756:1:980.00
-00003102722201179807303:1:388.00
-00003102722201179800689:1:9889.00
-00003102722201179808868:1:999.00
-00003102722201179808868:1:999.00
-00003102722201179802331:1:8002.00
-00003102722201179801699:1:1000.00
-00003102722201179808868:1:999.00
-00003102722201179813132:1:4932.00
-00003102722201179801699:1:1000.00
-00003102722201179803721:1:10000.00
-00003102722201179804756:1:980.00
-00003102722201179804213:1:1000.00
-00003102722201179803611:1:822.00
-00003102722201179817425:1:1000.00
-00003102722201179808868:1:14569.00
-00003102722201179810251:1:1000.00
-00003102722201179803611:1:828.00
-00003102722201179801699:1:5300.00
-00003102722201179803774:1:725.00
-00003102722201179803611:1:822.00
-00003102722201179801843:1:3100.00
-00003102722201179806715:1:2331.00
-00003102722201179806707:1:8957.00
-00003102722201179811335:1:957.00
-00003102722201179803155:1:10000.00
-00003102722201179803611:1:822.00
-00003102722201179801843:1:1700.00
-00003102722201179803404:1:1060.00
-00003102722201179803774:1:1976.00
-00003102722203019004096:1:1000.00
-00003102722201179818965:1:4600.00
-00003102722201179801843:1:3100.00
-00003102722201179806707:1:7597.00
-00003102722201179811095:1:5581.00
-00003102722201179803774:1:4528.00
-00003102722203019000787:1:4809.00
-00003102722201179810251:1:1000.00
-00003102722201179803962:1:996.00
-00003102722201179808980:1:5840.00
-00003102722201179808491:1:2155.00
-00003102722201179803774:1:468.00
-00003102722201179803962:1:996.00
-00003102722201179806707:1:4895.00
-00003102722201179803962:1:996.00
-00003102722201179807485:1:1090.00
-00003102722201179802859:1:1000.00
-00003102722201179804743:1:3500.00
-00003102722201179802859:1:968.00
-00003102722201179803962:1:996.00
-00003102722201179802859:1:951.00
-00003102722201179803962:1:896.00
-00003102722201179817773:1:1000.00
-00003102722201179802852:1:7950.00
-00003102722201179802852:1:10200.00
-00003102722201179802859:1:852.00
-00003102722203019003880:1:4900.00
-00003102722201179813974:1:998.00
-00003102722201179802344:1:2890.00
-00003102722201179803780:1:3450.00
-00003102722201179813974:1:1867.00
-00003102722201179804877:1:1937.00
-00003102722203019000883:1:1000.00
-00003102722201179804877:1:1957.00
-00003102722201179808851:1:29500.00
-00003102722201179803155:1:16590.00
-00003102722201179815568:1:50.00
-00003102722201179803020:1:1536.00
-00003102722201179802694:1:6990.00
-00003102722201179809455:1:897.00
-00003102722201179807303:1:20.00
-00003102722201179807303:1:25.00
-00003102722201179817408:1:1000.00
-00003102722201179807303:1:30.00
-00003102722201179803774:1:2684.00
-00003102722201179803155:1:8824.00
-00003102722203019003901:1:3580.00
-00003102722201179803739:1:1000.00
-00003102722201179811546:1:1020.00
-00003102722201179817759:1:3560.00
-00003102722201179818609:1:985.00
-00003102722201179803739:1:1000.00
-00003102722201179818609:1:895.00
-00003102722203019003901:1:1530.00
-00003102722201179807914:1:100.00
-00003102722201179803155:1:7846.00
-00003102722201179818609:1:958.00
-00003102722201179807627:1:8400.00
-00003102722201179818609:1:989.00
-00003102722201179802332:1:6546.00
-00003102722201179804052:1:2000.00
-00003102722201179806932:1:5005.00
-00003102722201179818609:1:998.00
-00003102722201179818609:1:798.00
-00003102722201179804267:1:20400.00
-00003102722201179818609:1:1378.00
-00003102722201179813933:1:986.00
-00003102722201179806451:1:10060.00
-00003102722203019004096:1:7850.00
-00003102722203019003901:1:3100.00
-00003102722201179806164:1:1000.00
-00003102722201179811335:1:947.00
-00003102722201179801090:1:1000.00
-00003102722201179806765:1:5320.00
-00003102722203019004096:1:3250.00
-00003102722201179804638:1:6500.00
-00003102722203019003901:1:5150.00
-00003102722201179811842:1:2699.00
-00003102722203019004096:1:5350.00
-00003102722201179806306:1:1000.00
-00003102722201179806702:1:2584.00
-00003102722201179808606:1:1547.00
-00003102722201179812324:1:1001.00
-00003102722201179808767:1:1100.00
-00003102722201179809132:1:2347.00
-00003102722201179817661:1:300.00
-00003102722201179806937:1:1000.00
-00003102722201179815589:1:8974.00
-00003102722201179818643:1:3728.00
-00003102722201179805155:1:20121.00
-00003102722201179807433:1:857.00
-00003102722201179815589:1:2548.00
-00003102722201179818645:1:3124.00
-00003102722201179807900:1:5573.50
-00003102722201179807667:1:1000.00
-00003102722201179818908:1:10000.00
-00003102722201179817869:1:988.00
-00003102722201179803941:1:4250.00
-00003102722201179809455:1:902.00
-00003102722201179817869:1:950.00
-00003102722201179800441:1:35000.00
-00003102722201179806825:1:13257.00
-00003102722203019003901:1:580.00
-00003102722201179817869:1:964.00
-00003102722201179804768:1:3525.00
-00003102722203019003901:1:4280.00
-00003102722201179806825:1:13606.00
-00003102722201179808606:1:6813.00
-00003102722201179804733:1:6350.00
-00003102722201179812457:1:955.00
-00003102722201179800441:1:6100.00
-00003102722201179806825:1:9601.00
-00003102722201179812457:1:954.00
-00003102722203019003901:1:4180.00
-00003102722201179800441:1:4100.00
-00003102722201179806825:1:7322.00
-00003102722201179803793:1:890.00
-00003102722201179812457:1:935.00
-00003102722201179811227:1:3315.00
-00003102722203019003901:1:5800.00
-00003102722201179806825:1:7548.00
-00003102722201179803410:1:1356.00
-00003102722201179803793:1:4650.00
-00003102722201179803444:1:2133.00
-00003102722201179808236:1:3521.00
-00003102722201179802647:1:7500.00
-00003102722201179803410:1:6820.00
-00003102722201179812623:1:1000.00
-00003102722201179803444:1:2488.00
-00003102722203019002755:1:1000.00
-00003102722201179808280:1:50000.00
-00003102722201179813898:1:14500.00
-00003102722201179801116:1:1800.00
-00003102722201179806983:1:548.00
-00003102722201179807436:1:927.00
-00003102722201179812458:1:795.00
-00003102722201179804203:1:26480.00
-00003102722201179812151:1:994.00
-00003102722201179812458:1:815.00
-00003102722201179812458:1:819.00
-00003102722201179807450:1:8835.00
-00003102722201179817402:1:5000.00
-00003102722201179805048:1:13860.00
-00003102722201179802411:1:2869.00
-00003102722201179804242:1:14210.00
-00003102722203019004096:1:2300.00
-00003102722201179812206:1:975.00
-00003102722201179809101:1:4926.00
-00003102722201179812206:1:986.00
-00003102722201179803986:1:965.00
-00003102722201179804793:1:1240.00
-00003102722203019000805:1:21560.00
-00003102722201179803685:1:2689.00
-00003102722203019003756:1:5397.00
-00003102722201179803685:1:2469.00
-00003102722201179803685:1:3286.00
-00003102722201179803685:1:1386.00
-00003102722201179801633:1:4830.00
-00003102722203019003756:1:5197.00
-00003102722201179802344:1:3989.00
-00003102722201179802601:1:198.00
-00003102722201179805048:1:980.00
-00003102722203019004096:1:3050.00
-00003102722201179803596:1:3365.00
-00003102722201179806715:1:2325.00
-00003102722201179808968:1:2945.00
-00003102722201179808393:1:2600.00
-00003102722201179808474:1:4561.00
-00003102722203019003911:1:1005.00
-00003102722201179801712:1:8105.20
-00003102722201179809455:1:903.00
-00003102722201179814418:1:1059.00
-00003102722201179814143:1:2680.00
-00003102722201179805434:1:758.00
-00003102722201179802331:1:6991.00
-00003102722201179809069:1:18250.00
-00003102722201179802601:1:199.00
-00003102722201179803817:1:1000.00
-00003102722201179801121:1:520.00
-00003102722201179802601:1:198.00
-00003102722201179807914:1:678.00
-00003102722203019003863:1:1100.00
-00003102722201179802601:1:199.00
-00003102722201179808722:1:980.00
-00003102722201179805008:1:201.00
-00003102722201179804505:1:1000.00
-00003102722201179806932:1:6094.00
-00003102722201179807914:1:980.00
-00003102722201179804856:1:1640.00
-00003102722201179808237:1:11080.00
-00003102722201179806273:1:1000.00
-00003102722201179818965:1:4510.00
-00003102722201179801824:1:1000.00
-00003102722201179803635:1:1000.00
-00003102722201179806273:1:965.00
-00003102722201179802892:1:1000.00
-00003102722201179803635:1:1000.00
-00003102722201179808598:1:50000.00
-00003102722201179804442:1:995.00
-00003102722201179807429:1:1100.00
-00003102722201179801650:1:550.00
-00003102722201179808829:1:988.00
-00003102722201179801650:1:470.00
-00003102722201179808444:1:6884.00
-00003102722201179808444:1:4788.00
-00003102722201179808444:1:9449.00
-00003102722201179802892:1:860.00
-00003102722201179803635:1:1000.00
-00003102722201179808444:1:8822.00
-00003102722201179801824:1:10000.00
-00003102722201179808939:1:845.00
-00003102722201179808444:1:9144.00
-00003102722201179815703:1:317.00
-00003102722201179806825:1:6015.00
-00003102722201179806825:1:8764.00
-00003102722201179808632:1:1001.00
-00003102722201179818643:1:3675.00
-00003102722201179811121:1:1000.00
-00003102722201179817771:1:3776.00
-00003102722201179804768:1:2531.00
-00003102722201179803935:1:7655.00
-00003102722201179806825:1:8542.00
-00003102722201179806825:1:8687.00
-00003102722201179811400:1:4977.00
-00003102722201179808583:1:1250.00
-00003102722201179806227:1:1010.00
-00003102722201179801116:1:4769.00
-00003102722201179803751:1:6288.00
-00003102722201179813147:1:4523.00
-00003102722201179809188:1:16475.00
-00003102722201179808816:1:1383.00
-00003102722203019003870:1:225.80
-00003102722201179808001:1:1000.00
-00003102722201179812072:1:6570.00
-00003102722201179806227:1:4529.00
-00003102722203019003870:1:5658.00
-00003102722201179817688:1:1000.00
-00003102722201179817410:1:10860.00
-00003102722201179808001:1:1000.00
-00003102722201179803568:1:327.00
-00003102722201179808001:1:1000.00
-00003102722201179808001:1:1000.00
-00003102722201179812072:1:9746.00
-00003102722201179809455:1:902.00
-00003102722201179808001:1:1000.00
-00003102722201179808402:1:1000.00
-00003102722201179805434:1:695.00
-00003102722201179806261:1:785.00
-00003102722201179818842:1:1000.00
-00003102722201179803751:1:3649.00
-00003102722201179806822:1:1692.00
-00003102722201179814513:1:328.08
-00003102722201179803760:1:992.00
-00003102722201179819003:1:988.00
-00003102722201179802038:1:5305.00
-00003102722201179808402:1:1000.00
-00003102722201179811316:1:5009.00
-00003102722201179805190:1:4245.00
-00003102722201179808557:1:437.00
-00003102722201179807409:1:17500.00
-00003102722201179808597:1:1200.00
-00003102722201179812071:1:999.00
-00003102722201179804288:1:986.00
-00003102722201179808645:1:1001.00
-00003102722201179812071:1:998.00
-00003102722201179805190:1:7527.00
-00003102722201179806488:1:10000.00
-00003102722201179812071:1:997.00
-00003102722201179808707:1:10.00
-00003102722201179808598:1:45000.00
-00003102722201179812071:1:999.00
-00003102722201179808824:1:6955.00
-00003102722201179802193:1:964.00
-00003102722201179808707:1:9500.00
-00003102722201179802193:1:981.00
-00003102722201179818649:1:50.00
-00003102722201179803927:1:6799.00
-00003102722201179818842:1:1000.00
-00003102722201179801738:1:1000.00
-00003102722201179803799:1:4426.00
-00003102722203019003861:1:1100.00
-00003102722201179808824:1:4650.00
-00003102722201179803799:1:5634.00
-00003102722201179817406:1:1000.00
-00003102722201179812151:1:976.70
-00003102722201179812282:1:1996.00
-00003102722201179808824:1:3680.00
-00003102722201179803927:1:6999.00
-00003102722201179809452:1:3954.80
-00003102722201179803611:1:699.00
-00003102722201179803760:1:1000.00
-00003102722201179803611:1:699.00
-00003102722201179814205:1:1000.00
-00003102722201179803611:1:699.00
-00003102722203019003868:1:2975.00
-00003102722201179807429:1:829.00
-00003102722201179814205:1:1000.00
-00003102722203019003868:1:1485.00
-00003102722201179810994:1:4280.08
-00003102722201179803927:1:4999.00
-00003102722203019000114:1:1000.00
-00003102722201179819001:1:5580.00
-00003102722201179806270:1:1000.00
-00003102722201179811335:1:867.00
-00003102722201179806270:1:5010.00
-00003102722203019000884:1:1000.00
-00003102722201179811124:1:5888.00
-00003102722201179818891:1:103.00
-00003102722201179803927:1:499.00
-00003102722201179806709:1:2966.00
-00003102722201179818891:1:1086.00
-00003102722201179806709:1:2488.00
-00003102722201179819001:1:7060.00
-00003102722201179806709:1:2946.00
-00003102722201179806709:1:1565.00
-00003102722201179806709:1:3268.00
-00003102722203019003880:1:3980.00
-00003102722201179806709:1:2365.00
-00003102722201179803668:1:3094.00
-00003102722201179806709:1:2144.00
-00003102722203019000114:1:980.00
-00003102722201179806709:1:1850.00
-00003102722201179805434:1:369.00
-00003102722201179806709:1:2858.00
-00003102722201179806709:1:2968.00
-00003102722201179806709:1:1466.00
-00003102722201179806709:1:1145.00
-00003102722201179806709:1:1356.00
-00003102722201179806709:1:2685.00
-00003102722201179808598:1:40000.00
-00003102722201179806256:1:998.00
-00003102722203019003760:1:22562.00
-00003102722201179805131:1:9788.00
-00003102722201179808598:1:7500.00
-00003102722201179808561:1:990.00
-00003102722201179808761:1:1938.00
-00003102722201179803042:1:820.00
-00003102722201179805131:1:9688.00
-00003102722201179812553:1:2500.00
-00003102722201179808645:1:321.00
-00003102722201179805131:1:9504.00
-00003102722201179805131:1:9158.00
-00003102722201179807677:1:1138.00
-00003102722201179813515:1:1000.00
-00003102722201179808598:1:2500.00
-00003102722201179807677:1:4999.00
-00003102722201179814202:1:1185.32
-00003102722201179807677:1:4559.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:999.00
-00003102722201179806978:1:861.00
-00003102722201179806970:1:1000.00
-00003102722201179817865:1:999.00
-00003102722201179806978:1:2487.00
-00003102722201179806889:1:1240.00
-00003102722201179808414:1:900.00
-00003102722201179818648:1:999.00
-00003102722201179803568:1:482.00
-00003102722201179808641:1:998.80
-00003102722201179802636:1:12888.00
-00003102722201179817402:1:5000.00
-00003102722201179804792:1:1982.00
-00003102722201179808716:1:4800.00
-00003102722201179817402:1:5000.00
-00003102722201179808641:1:24.00
-00003102722201179811311:1:13620.00
-00003102722201179812022:1:3680.00
-00003102722201179807627:1:5000.00
-00003102722201179818609:1:986.00
-00003102722201179817402:1:1000.00
-00003102722201179818662:1:5120.00
-00003102722201179818609:1:965.00
-00003102722201179811311:1:10800.00
-00003102722201179818609:1:896.00
-00003102722201179818609:1:998.00
-00003102722201179806277:1:55654.00
-00003102722201179818609:1:798.00
-00003102722201179806105:1:608.00
-00003102722201179807627:1:6000.00
-00003102722201179805983:1:1895.00
-00003102722201179818609:1:987.00
-00003102722201179808113:1:3196.00
-00003102722201179807956:1:2085.60
-00003102722201179811311:1:860.00
-00003102722201179818609:1:1365.00
-00003102722201179800486:1:953.00
-00003102722201179803568:1:329.00
-00003102722201179817719:1:1100.00
-00003102722201179808723:1:948.00
-00003102722201179808803:1:31250.00
-00003102722201179812349:1:1000.00
-00003102722201179809144:1:813.00
-00003102722201179808280:1:50000.00
-00003102722201179808402:1:1700.00
-00003102722201179806240:1:1000.00
-00003102722201179812349:1:8100.00
-00003102722201179800486:1:972.00
-00003102722201179814464:1:801.00
-00003102722201179808402:1:1700.00
-00003102722201179808248:1:2467.00
-00003102722201179800486:1:3658.00
-00003102722201179814202:1:1756.93
-00003102722201179808402:1:1000.00
-00003102722201179802405:1:3968.00
-00003102722201179800486:1:2177.00
-00003102722201179806932:1:7900.00
-00003102722201179816179:1:9985.00
-00003102722201179801848:1:920.00
-00003102722201179818643:1:1271.00
-00003102722201179801848:1:1650.00
-00003102722201179817865:1:998.00
-00003102722201179808429:1:1502.00
-00003102722201179801848:1:4305.00
-00003102722201179817865:1:996.00
-00003102722201179806981:1:653.00
-00003102722203019004070:1:220.00
-00003102722201179817865:1:999.00
-00003102722203019003947:1:1711.00
-00003102722201179818612:1:5990.00
-00003102722201179816179:1:9995.00
-00003102722201179812132:1:3184.00
-00003102722203019003947:1:1644.60
-00003102722201179801848:1:1290.00
-00003102722203019004070:1:800.00
-00003102722201179807303:1:280.00
-00003102722203019003947:1:1895.00
-00003102722201179805444:1:999.00
-00003102722201179814464:1:200.00
-00003102722201179808761:1:985.00
-00003102722201179801187:1:4012.00
-00003102722201179811225:1:4100.00
-00003102722201179801116:1:4738.00
-00003102722201179809075:1:1936.00
-00003102722201179808561:1:850.00
-00003102722201179808585:1:1000.00
-00003102722201179801839:1:1033.00
-00003102722201179803701:1:4650.00
-00003102722201179808476:1:4735.00
-00003102722201179803761:1:9583.00
-00003102722201179809455:1:902.00
-00003102722201179803042:1:54.00
-00003102722201179817499:1:1000.00
-00003102722201179811335:1:871.00
-00003102722201179811225:1:5000.00
-00003102722201179808585:1:930.00
-00003102722201179818741:1:12235.55
-00003102722201179805444:1:998.00
-00003102722201179811169:1:1040.00
-00003102722201179801150:1:7423.00
-00003102722201179807691:1:1000.00
-00003102722201179809452:1:3859.00
-00003102722201179818634:1:2500.00
-00003102722201179808402:1:1000.00
-00003102722201179818605:1:3000.00
-00003102722201179817866:1:999.00
-00003102722201179812020:1:9562.00
-00003102722201179817866:1:999.00
-00003102722201179809196:1:1954.00
-00003102722201179801821:1:12600.00
-00003102722203019000195:1:3516.00
-00003102722203019000195:1:4287.00
-00003102722201179809097:1:1000.00
-00003102722201179808977:1:40250.00
-00003102722201179800486:1:948.00
-00003102722201179809128:1:1329.00
-00003102722201179808440:1:9764.00
-00003102722201179803635:1:1000.00
-00003102722201179801821:1:2000.00
-00003102722201179808941:1:1000.00
-00003102722201179811310:1:6545.00
-00003102722201179807099:1:9220.00
-00003102722201179818950:1:1650.00
-00003102722201179807099:1:6250.00
-00003102722201179811092:1:8888.00
-00003102722201179803979:1:534.00
-00003102722201179806312:1:1000.00
-00003102722201179806932:1:9100.00
-00003102722201179801305:1:2998.00
-00003102722201179808402:1:1000.00
-00003102722201179804052:1:5440.00
-00003102722201179808906:1:199.00
-00003102722201179806312:1:1000.00
-00003102722201179808887:1:850.00
-00003102722201179812629:1:1120.00
-00003102722201179812626:1:1000.00
-00003102722201179806312:1:1000.00
-00003102722201179802038:1:2215.00
-00003102722201179808876:1:3783.00
-00003102722201179808906:1:1013.00
-00003102722201179806261:1:786.00
-00003102722201179808934:1:500.00
-00003102722201179808876:1:3213.00
-00003102722201179803916:1:3299.00
-00003102722201179803042:1:623.00
-00003102722201179808876:1:2763.00
-00003102722201179808953:1:1674.00
-00003102722201179806728:1:8980.00
-00003102722201179808402:1:1000.00
-00003102722201179808953:1:6500.00
-00003102722201179803155:1:19850.00
-00003102722201179808906:1:416.00
-00003102722201179803155:1:18360.00
-00003102722201179817419:1:300.00
-00003102722201179808876:1:7963.00
-00003102722201179803739:1:4968.00
-00003102722201179811413:1:2633.00
-00003102722201179808876:1:4323.00
-00003102722201179802711:1:2664.00
-00003102722201179803701:1:985.00
-00003102722201179800790:1:2638.00
-00003102722201179800790:1:2764.00
-00003102722201179803701:1:976.00
-00003102722201179808402:1:998.00
-00003102722201179808953:1:9318.00
-00003102722201179808393:1:2400.00
-00003102722201179803701:1:982.00
-00003102722201179805434:1:937.00
-00003102722201179803701:1:992.00
-00003102722201179810999:1:985.00
-00003102722201179801740:1:1000.00
-00003102722201179808953:1:9254.00
-00003102722201179803701:1:470.00
-00003102722201179803155:1:2159.00
-00003102722201179809455:1:896.00
-00003102722201179808720:1:5030.00
-00003102722201179803155:1:17650.00
-00003102722201179813933:1:815.00
-00003102722201179808953:1:4544.00
-00003102722201179808952:1:8788.00
-00003102722201179808953:1:1000.00
-00003102722201179808952:1:8762.00
-00003102722201179804451:1:1000.00
-00003102722201179808916:1:3000.00
-00003102722201179808953:1:2000.00
-00003102722201179809124:1:10210.00
-00003102722201179804733:1:25200.00
-00003102722201179803611:1:477.00
-00003102722201179808916:1:2000.00
-00003102722201179803611:1:791.00
-00003102722201179803611:1:798.00
-00003102722201179812085:1:3099.00
-00003102722201179803986:1:960.00
-00003102722201179808720:1:4030.00
-00003102722201179810251:1:1000.00
-00003102722201179801116:1:3580.00
-00003102722201179801116:1:1210.00
-00003102722201179806953:1:1000.00
-00003102722201179802892:1:2100.00
-00003102722201179807433:1:4830.00
-00003102722201179811307:1:2100.00
-00003102722201179807433:1:4830.00
-00003102722201179803701:1:3520.00
-00003102722201179802665:1:4322.20
-00003102722201179801320:1:749.00
-00003102722201179801843:1:3783.00
-00003102722201179801839:1:30.00
-00003102722201179808585:1:998.50
-00003102722201179802665:1:4936.00
-00003102722201179801320:1:1726.00
-00003102722201179808954:1:10.65
-00003102722201179807627:1:514.00
-00003102722201179810251:1:1000.00
-00003102722201179817448:1:5000.00
-00003102722201179818609:1:985.00
-00003102722201179801843:1:683.00
-00003102722201179804733:1:10670.00
-00003102722201179817448:1:5000.00
-00003102722201179806256:1:989.00
-00003102722201179818609:1:898.00
-00003102722201179802623:1:999.00
-00003102722201179810251:1:1000.00
-00003102722201179807099:1:7560.00
-00003102722201179817491:1:13075.00
-00003102722201179801843:1:2283.00
-00003102722201179808280:1:50000.00
-00003102722201179811842:1:1900.00
-00003102722201179818609:1:1876.00
-00003102722201179808954:1:1000.00
-00003102722201179810251:1:1000.00
-00003102722201179804768:1:3218.00
-00003102722201179807627:1:2800.00
-00003102722203019000328:1:19680.00
-00003102722201179803821:1:9858.00
-00003102722201179809455:1:887.00
-00003102722201179804872:1:2499.00
-00003102722201179809093:1:11.00
-00003102722201179802651:1:4788.00
-00003102722201179808585:1:998.50
-00003102722201179806261:1:791.00
-00003102722201179809185:1:500.00
-00003102722201179805173:1:1000.00
-00003102722201179809409:1:21555.00
-00003102722201179804719:1:498.00
-00003102722201179809409:1:14322.00
-00003102722201179808723:1:894.00
-00003102722201179809409:1:598.00
-00003102722201179808585:1:995.00
-00003102722201179805445:1:1000.00
-00003102722201179808807:1:32500.00
-00003102722201179812251:1:6829.00
-00003102722201179812131:1:660.00
-00003102722201179815551:1:6791.00
-00003102722201179805445:1:4000.00
-00003102722201179815551:1:2371.00
-00003102722201179811133:1:9999.00
-00003102722201179813660:1:38.90
-00003102722201179808887:1:150.00
-00003102722201179815551:1:6771.00
-00003102722201179811335:1:879.00
-00003102722201179806715:1:2313.00
-00003102722201179803808:1:1000.00
-00003102722201179813267:1:2000.00
-00003102722201179803630:1:965.00
-00003102722201179802346:1:10000.00
-00003102722201179813660:1:28.90
-00003102722201179805445:1:5980.00
-00003102722201179812778:1:875.00
-00003102722201179803831:1:21580.00
-00003102722201179806808:1:985.00
-00003102722201179803042:1:4116.00
-00003102722201179809080:1:3000.00
-00003102722201179803184:1:704.00
-00003102722201179800462:1:800.00
-00003102722201179805425:1:2574.00
-00003102722201179817866:1:961.00
-00003102722201179801587:1:436.00
-00003102722201179800462:1:4999.99
-00003102722201179803831:1:18108.00
-00003102722201179817866:1:961.00
-00003102722201179801843:1:1000.00
-00003102722201179801587:1:2846.00
-00003102722201179814247:1:10200.00
-00003102722201179809455:1:882.00
-00003102722203019003756:1:6918.00
-00003102722201179808248:1:1764.00
-00003102722201179804877:1:2076.00
-00003102722201179802411:1:19.85
-00003102722201179801587:1:1675.00
-00003102722201179808248:1:3475.00
-00003102722201179804877:1:2597.00
-00003102722201179801587:1:3236.00
-00003102722201179806326:1:3417.00
-00003102722201179806326:1:3215.00
-00003102722203019003758:1:1000.00
-00003102722201179801116:1:4895.00
-00003102722201179809455:1:335.00
-00003102722201179803701:1:985.00
-00003102722201179804877:1:967.00
-00003102722201179803986:1:975.00
-00003102722201179803701:1:980.00
-00003102722201179803701:1:976.00
-00003102722201179808887:1:45000.00
-00003102722201179803701:1:982.00
-00003102722201179803701:1:910.00
-00003102722201179813198:1:1671.00
-00003102722203019003758:1:836.00
-00003102722201179809124:1:10172.00
-00003102722201179808723:1:947.00
-00003102722201179811335:1:952.00
-00003102722201179814117:1:8010.00
-00003102722201179818901:1:9580.00
-00003102722201179813830:1:3963.25
-00003102722201179813830:1:1765.32
-00003102722201179812145:1:14985.00
-00003102722201179811442:1:2000.00
-00003102722201179807798:1:12030.00
-00003102722201179801848:1:920.00
-00003102722201179801848:1:720.00
-00003102722201179801848:1:925.00
-00003102722201179817866:1:991.00
-00003102722201179803701:1:960.00
-00003102722201179803701:1:810.00
-00003102722201179807808:1:579.00
-00003102722201179803701:1:520.00
-00003102722201179803701:1:810.00
-00003102722201179803821:1:9989.00
-00003102722201179814464:1:3580.00
-00003102722201179814464:1:1405.00
-00003102722201179817419:1:300.00
-00003102722201179806256:1:997.00
-00003102722201179801189:1:1011.00
-00003102722201179813183:1:3500.00
-00003102722201179803155:1:19850.00
-00003102722201179806312:1:1000.00
-00003102722203019003751:1:5831.00
-00003102722203019003751:1:5493.00
-00003102722203019003751:1:1857.00
-00003102722203019003751:1:5129.00
-00003102722201179806312:1:1000.00
-00003102722201179813183:1:1000.00
-00003102722201179813183:1:1000.00
-00003102722201179808623:1:199.00
-00003102722201179809129:1:10270.00
-00003102722201179804052:1:5334.00
-00003102722201179813183:1:1500.00
-00003102722201179801184:1:14800.00
-00003102722201179804719:1:608.00
-00003102722203019003874:1:1070.00
-00003102722201179818655:1:1000.00
-00003102722201179806242:1:1000.00
-00003102722201179803499:1:44350.00
-00003102722201179818646:1:1360.00
-00003102722201179806326:1:3705.00
-00003102722201179806326:1:3419.00
-00003102722201179803780:1:2850.00
-00003102722203019000772:1:15080.00
-00003102722201179801116:1:4995.00
-00003102722201179806362:1:10195.50
-00003102722201179804779:1:2135.00
-00003102722201179808641:1:995.00
-00003102722201179813999:1:1998.00
-00003102722201179808641:1:999.90
-00003102722201179805159:1:1000.00
-00003102722201179811843:1:1000.00
-00003102722201179803833:1:980.00
-00003102722201179803833:1:820.00
-00003102722201179805159:1:1000.00
-00003102722201179803821:1:9768.00
-00003102722201179818602:1:1000.00
-00003102722201179808561:1:600.00
-00003102722203019000772:1:30588.88
-00003102722201179812076:1:1000.00
-00003102722201179808005:1:5000.00
-00003102722201179808588:1:3928.00
-00003102722201179819004:1:1000.00
-00003102722201179808641:1:900.00
-00003102722201179808561:1:900.00
-00003102722201179803854:1:26900.00
-00003102722201179813750:1:1000.12
-00003102722201179814148:1:1000.00
-00003102722201179805040:1:6000.00
-00003102722203019003874:1:1070.00
-00003102722203019000805:1:19560.00
-00003102722201179803986:1:936.00
-00003102722203019003760:1:16262.00
-00003102722201179816177:1:1650.00
-00003102722203019003760:1:11566.00
-00003102722203019000805:1:12130.00
-00003102722203019003760:1:7256.00
-00003102722201179813164:1:896.00
-00003102722201179814217:1:3551.00
-00003102722201179816177:1:1863.00
-00003102722201179811204:1:980.00
-00003102722201179814217:1:2396.00
-00003102722201179807808:1:482.00
-00003102722201179816177:1:2600.00
-00003102722201179811408:1:5897.00
-00003102722201179803854:1:11000.00
-00003102722201179812544:1:980.00
-00003102722201179805159:1:19866.00
-00003102722201179816177:1:1760.00
-00003102722201179816177:1:6320.00
-00003102722201179802344:1:3950.00
-00003102722201179803761:1:932.00
-00003102722201179803761:1:783.00
-00003102722203019000197:1:1010.00
-00003102722201179809455:1:874.00
-00003102722201179817759:1:990.00
-00003102722201179812105:1:1000.00
-00003102722201179811408:1:6051.00
-00003102722201179812221:1:12700.00
-00003102722201179806408:1:3400.00
-00003102722201179803771:1:312.00
-00003102722201179800474:1:983.00
-00003102722201179803761:1:950.00
-00003102722201179807909:1:5914.00
-00003102722201179803668:1:2124.00
-00003102722201179815722:1:975.00
-00003102722201179802004:1:1000.00
-00003102722201179815722:1:4747.00
-00003102722201179803632:1:1000.00
-00003102722201179807425:1:6879.00
-00003102722201179801112:1:977.00
-00003102722201179802300:1:3900.00
-00003102722201179807425:1:9981.00
-00003102722201179803632:1:782.00
-00003102722203019003755:1:1915.00
-00003102722201179807674:1:43.00
-00003102722201179803761:1:963.00
-00003102722201179802608:1:1000.00
-00003102722201179800474:1:965.00
-00003102722201179803632:1:862.00
-00003102722201179807961:1:1000.00
-00003102722201179814238:1:29863.00
-00003102722201179803733:1:899.00
-00003102722201179803454:1:2495.39
-00003102722201179802627:1:6227.00
-00003102722201179801112:1:513.00
-00003102722201179802627:1:1480.00
-00003102722201179806245:1:9650.00
-00003102722201179812458:1:675.00
-00003102722201179801165:1:9123.00
-00003102722201179812458:1:425.00
-00003102722201179807904:1:3400.00
-00003102722201179813974:1:2018.00
-00003102722201179813974:1:892.00
-00003102722201179802331:1:5661.00
-00003102722201179802619:1:299.00
-00003102722201179809096:1:4998.00
-00003102722201179812251:1:16900.00
-00003102722201179802619:1:29800.00
-00003102722201179818654:1:945.00
-00003102722201179818654:1:945.00
-00003102722201179818654:1:945.00
-00003102722201179818654:1:945.00
-00003102722201179808402:1:1000.00
-00003102722201179803979:1:768.00
-00003102722201179803941:1:9950.00
-00003102722201179809187:1:28500.00
-00003102722201179818680:1:999.00
-00003102722201179803986:1:985.00
-00003102722201179808476:1:4372.00
-00003102722201179803761:1:821.00
-00003102722201179808402:1:1000.00
-00003102722201179812130:1:1800.00
-00003102722203019000878:1:5241.00
-00003102722201179818654:1:215.00
-00003102722201179807691:1:1000.00
-00003102722201179811204:1:850.00
-00003102722201179803761:1:981.00
-00003102722203019000878:1:10210.00
-00003102722201179808172:1:1014.00
-00003102722201179811400:1:4752.00
-00003102722201179808870:1:2150.00
-00003102722201179814217:1:5113.00
-00003102722201179811310:1:6845.00
-00003102722201179806939:1:1000.00
-00003102722201179808444:1:11944.00
-00003102722201179808444:1:9344.00
-00003102722201179814204:1:8030.00
-00003102722201179808444:1:9528.00
-00003102722201179808444:1:8228.00
-00003102722201179808087:1:6032.11
-00003102722201179809455:1:684.00
-00003102722201179803905:1:9890.00
-00003102722201179808245:1:8076.00
-00003102722201179803901:1:6853.00
-00003102722201179808087:1:6029.32
-00003102722201179808641:1:965.50
-00003102722203019000758:1:1000.00
-00003102722201179801099:1:1000.00
-00003102722201179806727:1:2986.00
-00003102722201179806727:1:1997.00
-00003102722201179805438:1:980.00
-00003102722201179808939:1:1563.00
-00003102722201179809089:1:912.00
-00003102722201179802710:1:1857.36
-00003102722201179802710:1:1857.36
-00003102722201179809089:1:213.00
-00003102722201179806106:1:566.00
-00003102722201179812131:1:968.00
-00003102722201179808402:1:1000.00
-00003102722201179812356:1:1000.00
-00003102722201179806727:1:6719.00
-00003102722201179807936:1:16954.00
-00003102722201179803701:1:2960.00
-00003102722201179807936:1:5236.00
-00003102722201179801839:1:1002.00
-00003102722201179812356:1:299.00
-00003102722201179801650:1:1000.00
-00003102722201179808939:1:785.00
-00003102722201179803794:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179806932:1:8633.00
-00003102722201179801650:1:1000.00
-00003102722201179801650:1:1000.00
-00003102722201179814418:1:6235.00
-00003102722201179807936:1:13012.00
-00003102722201179801650:1:1000.00
-00003102722201179806978:1:3157.00
-00003102722201179808402:1:1000.00
-00003102722201179811939:1:1000.00
-00003102722201179817389:1:7632.00
-00003102722201179805983:1:3245.00
-00003102722201179807935:1:520.00
-00003102722203019000133:1:50000.00
-00003102722201179806105:1:685.00
-00003102722201179818646:1:6398.00
-00003102722201179818605:1:3000.00
-00003102722201179808821:1:3210.00
-00003102722201179818646:1:517.00
-00003102722201179812451:1:5087.00
-00003102722201179803733:1:992.00
-00003102722201179804248:1:30000.00
-00003102722201179800474:1:972.00
-00003102722201179806274:1:1897.00
-00003102722201179818646:1:655.00
-00003102722201179803792:1:3013.00
-00003102722201179803558:1:4012.78
-00003102722201179818646:1:423.00
-00003102722201179813933:1:1798.00
-00003102722201179818646:1:444.00
-00003102722201179818646:1:707.00
-00003102722201179818646:1:643.00
-00003102722201179805444:1:997.00
-00003102722201179818646:1:436.00
-00003102722201179807997:1:9658.00
-00003102722201179808427:1:600.00
-00003102722201179818646:1:676.00
-00003102722201179807988:1:3500.00
-00003102722201179808401:1:819.00
-00003102722203019004045:1:299.00
-00003102722201179818652:1:1000.00
-00003102722203019004045:1:299.00
-00003102722201179808867:1:4578.00
-00003102722201179801116:1:5002.00
-00003102722201179803760:1:855.00
-00003102722201179818652:1:4848.00
-00003102722201179803222:1:2526.00
-00003102722201179801748:1:2320.00
-00003102722201179803789:1:800.00
-00003102722201179801114:1:500.00
-00003102722201179809101:1:984.00
-00003102722203019004045:1:299.00
-00003102722203019004045:1:299.00
-00003102722201179806765:1:2980.00
-00003102722201179806765:1:3870.00
-00003102722201179804709:1:2376.00
-00003102722201179803299:1:12.00
-00003102722201179812351:1:1000.00
-00003102722201179808001:1:1000.00
-00003102722201179808939:1:957.00
-00003102722201179815499:1:20000.00
-00003102722201179817867:1:27000.00
-00003102722201179808001:1:1000.00
-00003102722201179806764:1:2700.00
-00003102722201179805055:1:10000.00
-00003102722201179806764:1:8000.00
-00003102722201179814211:1:1348.00
-00003102722203019004045:1:40000.00
-00003102722201179808403:1:1995.00
-00003102722201179809455:1:710.00
-00003102722201179808641:1:986.00
-00003102722201179814211:1:158.00
-00003102722201179801701:1:1000.00
-00003102722201179814211:1:120.00
-00003102722201179815499:1:9150.00
-00003102722201179802716:1:5973.00
-00003102722201179808221:1:1108.00
-00003102722201179805055:1:10000.00
-00003102722203019003868:1:4395.00
-00003102722201179803237:1:5692.00
-00003102722201179809142:1:1123.70
-00003102722201179808761:1:1873.50
-00003102722201179808401:1:6505.00
-00003102722201179802017:1:1000.00
-00003102722201179803780:1:3200.00
-00003102722201179806800:1:3115.00
-00003102722201179802694:1:4585.00
-00003102722201179807969:1:725.00
-00003102722201179802694:1:5585.00
-00003102722201179803701:1:875.00
-00003102722201179804638:1:2500.00
-00003102722201179803466:1:9888.00
-00003102722201179804638:1:5000.00
-00003102722201179807966:1:1000.00
-00003102722201179804638:1:5000.00
-00003102722201179803701:1:960.00
-00003102722201179806249:1:1000.00
-00003102722201179804638:1:4000.00
-00003102722201179803701:1:975.00
-00003102722201179803747:1:1000.00
-00003102722201179803466:1:5800.00
-00003102722201179801090:1:9800.00
-00003102722201179801734:1:1000.00
-00003102722201179807966:1:101.00
-00003102722201179804052:1:2695.00
-00003102722201179808715:1:50.00
-00003102722201179801109:1:1000.00
-00003102722201179809102:1:2168.00
-00003102722201179807969:1:456.00
-00003102722201179809455:1:697.00
-00003102722201179802344:1:2290.00
-00003102722201179812335:1:2000.00
-00003102722201179807969:1:578.00
-00003102722201179812130:1:1800.00
-00003102722201179807966:1:998.20
-00003102722201179809102:1:2832.00
-00003102722201179807969:1:458.00
-00003102722201179809044:1:3180.00
-00003102722201179807997:1:6986.00
-00003102722203019000789:1:12899.00
-00003102722201179812257:1:1000.00
-00003102722201179806989:1:941.00
-00003102722201179808338:1:1080.00
-00003102722201179817710:1:11200.00
-00003102722201179809102:1:17.25
-00003102722201179818962:1:947.00
-00003102722201179807933:1:1357.00
-00003102722201179809102:1:1953.00
-00003102722201179801695:1:11400.00
-00003102722201179802411:1:2180.00
-00003102722201179818962:1:806.00
-00003102722201179807969:1:196.00
-00003102722201179801140:1:8160.00
-00003102722201179808966:1:5000.00
-00003102722201179802411:1:2485.00
-00003102722201179807969:1:898.00
-00003102722201179818652:1:7564.00
-00003102722201179801140:1:4156.00
-00003102722201179809102:1:1714.00
-00003102722201179808609:1:1023.00
-00003102722201179818652:1:5789.00
-00003102722201179801140:1:5270.00
-00003102722201179801116:1:4905.00
-00003102722201179805363:1:16858.00
-00003102722201179801199:1:1000.00
-00003102722201179808850:1:996.00
-00003102722201179818863:1:1000.00
-00003102722203019000172:1:5551.00
-00003102722201179808850:1:1689.00
-00003102722201179812132:1:1796.00
-00003102722201179803766:1:16500.00
-00003102722201179812558:1:1000.00
-00003102722201179812132:1:1092.00
-00003102722201179808715:1:50.00
-00003102722201179812132:1:8194.00
-00003102722201179809452:1:4285.00
-00003102722201179814418:1:3679.00
-00003102722201179801635:1:3482.00
-00003102722201179803733:1:983.00
-00003102722201179801701:1:8915.00
-00003102722201179801696:1:12503.60
-00003102722201179815556:1:1000.00
-00003102722201179808609:1:120.00
-00003102722201179806240:1:1000.00
-00003102722201179817771:1:3798.00
-00003102722203019003869:1:1043.00
-00003102722201179815556:1:9200.00
-00003102722201179809134:1:15772.00
-00003102722201179805438:1:400.00
-00003102722201179809134:1:15200.00
-00003102722201179809091:1:49863.00
-00003102722201179808247:1:2187.00
-00003102722201179803596:1:4045.00
-00003102722201179803020:1:2380.00
-00003102722201179803677:1:4855.00
-00003102722201179813999:1:1876.00
-00003102722201179807969:1:295.00
-00003102722201179803982:1:325.00
-00003102722201179802193:1:938.00
-00003102722201179812773:1:624.00
-00003102722201179813567:1:1000.00
-00003102722201179802193:1:975.00
-00003102722201179812558:1:9240.00
-00003102722201179817746:1:425.30
-00003102722201179812282:1:3387.00
-00003102722201179809024:1:10858.00
-00003102722201179812172:1:743.00
-00003102722201179803221:1:6166.60
-00003102722201179803701:1:980.00
-00003102722201179807980:1:895.00
-00003102722201179812172:1:268.00
-00003102722201179812172:1:405.00
-00003102722201179801112:1:1954.00
-00003102722201179807980:1:895.00
-00003102722201179812335:1:17500.00
-00003102722201179812172:1:268.00
-00003102722201179803701:1:870.00
-00003102722201179812172:1:395.00
-00003102722203019000104:1:1286.00
-00003102722201179812172:1:472.00
-00003102722201179818626:1:1000.00
-00003102722201179807980:1:895.00
-00003102722201179803221:1:566.60
-00003102722201179803980:1:5500.00
-00003102722201179803701:1:875.00
-00003102722201179812172:1:327.00
-00003102722201179803980:1:6300.00
-00003102722201179812172:1:947.00
-00003102722201179811317:1:1577.00
-00003102722201179807980:1:895.00
-00003102722201179803701:1:298.00
-00003102722201179811317:1:1644.00
-00003102722201179812172:1:258.00
-00003102722201179812172:1:373.00
-00003102722201179807980:1:895.00
-00003102722201179815499:1:40240.00
-00003102722201179808941:1:100.00
-00003102722201179812172:1:276.00
-00003102722201179801774:1:1765.00
-00003102722201179808761:1:2358.00
-00003102722201179812172:1:205.00
-00003102722201179812172:1:573.00
-00003102722203019000799:1:1086.00
-00003102722201179812172:1:206.00
-00003102722201179816193:1:2000.00
-00003102722201179817485:1:1000.00
-00003102722201179804726:1:8996.00
-00003102722201179806973:1:1076.00
-00003102722201179802748:1:2100.50
-00003102722201179801742:1:8104.00
-00003102722201179803222:1:14856.00
-00003102722201179808044:1:999.00
-00003102722201179808403:1:3203.00
-00003102722201179803465:1:4458.00
-00003102722201179808044:1:999.00
-00003102722201179812071:1:999.00
-00003102722201179808044:1:999.00
-00003102722201179804669:1:1009.00
-00003102722201179808044:1:999.00
-00003102722201179808044:1:999.00
-00003102722201179800489:1:14000.00
-00003102722203019000652:1:8860.00
-00003102722201179808594:1:1000.00
-00003102722201179804726:1:980.00
-00003102722201179801120:1:1000.00
-00003102722201179804726:1:1050.00
-00003102722201179808441:1:880.00
-00003102722203019000790:1:1350.00
-00003102722201179808401:1:3500.00
-00003102722201179803611:1:669.00
-00003102722201179809455:1:703.00
-00003102722201179803611:1:889.00
-00003102722201179803611:1:954.00
-00003102722201179812209:1:528.00
-00003102722201179817759:1:980.00
-00003102722201179800486:1:968.00
-00003102722201179812211:1:1000.00
-00003102722201179812211:1:1000.00
-00003102722201179804709:1:1236.00
-00003102722201179803020:1:862.00
-00003102722201179802716:1:7349.00
-00003102722201179813793:1:4063.00
-00003102722201179811842:1:2490.00
-00003102722201179806448:1:1000.00
-00003102722201179812255:1:9999.99
-00003102722201179817491:1:17652.00
-00003102722201179805928:1:4325.00
-00003102722201179808715:1:1000.00
-00003102722201179811499:1:10998.00
-00003102722201179802346:1:10000.00
-00003102722201179809452:1:950.00
-00003102722201179803986:1:976.00
-00003102722201179808595:1:511.00
-00003102722201179812255:1:3999.99
-00003102722201179807682:1:916.00
-00003102722201179806800:1:4957.00
-00003102722203019000154:1:1000.00
-00003102722201179806587:1:13800.00
-00003102722201179806715:1:2296.00
-00003102722201179809452:1:940.00
-00003102722201179807682:1:916.00
-00003102722201179818652:1:13199.00
-00003102722201179807682:1:916.00
-00003102722201179803568:1:968.00
-00003102722201179800634:1:7030.00
-00003102722201179802680:1:10.00
-00003102722201179808876:1:2132.00
-00003102722201179812259:1:1000.00
-00003102722203019003864:1:1005.00
-00003102722201179811334:1:15080.00
-00003102722201179807303:1:2000.00
-00003102722201179803685:1:2768.00
-00003102722201179803685:1:3896.00
-00003102722201179806105:1:356.00
-00003102722201179803685:1:1486.00
-00003102722201179805983:1:880.00
-00003102722201179803685:1:2327.00
-00003102722201179808876:1:3529.00
-00003102722201179806226:1:2507.00
-00003102722201179817759:1:2880.00
-00003102722201179808876:1:2269.00
-00003102722201179813697:1:1000.00
-00003102722201179806226:1:2506.00
-00003102722201179806808:1:830.00
-00003102722201179811335:1:15058.00
-00003102722201179812151:1:959.00
-00003102722201179812105:1:1000.00
-00003102722201179803287:1:4369.00
-00003102722201179812211:1:1000.00
-00003102722201179812211:1:1000.00
-00003102722201179802680:1:1200.00
-00003102722201179808876:1:2532.00
-00003102722201179807432:1:36893.00
-00003102722201179807483:1:2853.00
-00003102722201179806906:1:7685.00
-00003102722201179806906:1:657.00
-00003102722201179808427:1:3186.00
-00003102722201179808876:1:7356.00
-00003102722201179801017:1:1705.00
-00003102722201179806906:1:96.00
-00003102722201179808427:1:427.00
-00003102722201179812373:1:1000.00
-00003102722201179806906:1:89.00
-00003102722201179808935:1:2493.00
-00003102722201179816611:1:2963.00
-00003102722201179808427:1:563.00
-00003102722201179806906:1:1768.00
-00003102722201179802681:1:1550.00
-00003102722201179806906:1:59.00
-00003102722201179808427:1:2358.00
-00003102722201179800790:1:3894.00
-00003102722201179806226:1:3506.00
-00003102722201179808427:1:1085.00
-00003102722201179808427:1:750.00
-00003102722203019000797:1:1382.00
-00003102722201179800790:1:3243.00
-00003102722201179803635:1:1000.00
-00003102722201179806906:1:37.60
-00003102722201179816611:1:963.00
-00003102722201179802008:1:1000.00
-00003102722201179806906:1:52.60
-00003102722201179808427:1:1230.00
-00003102722201179806906:1:34.10
-00003102722201179806906:1:24.30
-00003102722201179808427:1:1430.00
-00003102722201179808606:1:8726.00
-00003102722201179808427:1:650.00
-00003102722201179808427:1:930.00
-00003102722201179808646:1:5100.00
-00003102722201179808427:1:750.00
-00003102722201179812373:1:33000.00
-00003102722201179808427:1:860.00
-00003102722201179818683:1:1000.00
-00003102722201179816611:1:8966.00
-00003102722201179802710:1:2028.30
-00003102722203019000797:1:983.00
-00003102722201179802710:1:2028.30
-00003102722201179817362:1:643.00
-00003102722201179808401:1:5204.00
-00003102722201179808883:1:2380.00
-00003102722201179811204:1:980.00
-00003102722201179808761:1:1692.50
-00003102722201179816611:1:987.00
-00003102722201179817362:1:1359.00
-00003102722201179808433:1:3257.00
-00003102722201179808883:1:2160.00
-00003102722201179811204:1:980.00
-00003102722201179817362:1:399.00
-00003102722201179817362:1:2447.00
-00003102722201179808597:1:1000.00
-00003102722201179813790:1:2400.00
-00003102722201179801843:1:2662.00
-00003102722201179801843:1:1882.00
-00003102722201179803733:1:835.00
-00003102722201179801843:1:2662.00
-00003102722201179804767:1:4035.00
-00003102722203019003862:1:4038.00
-00003102722201179808883:1:657.00
-00003102722201179806981:1:712.00
-00003102722201179808550:1:7982.00
-00003102722201179808550:1:8213.00
-00003102722201179818611:1:946.00
-00003102722201179809455:1:697.00
-00003102722201179813570:1:1000.00
-00003102722201179818611:1:946.00
-00003102722201179801116:1:4870.00
-00003102722201179806765:1:2390.00
-00003102722201179818611:1:947.00
-00003102722203019000805:1:31245.00
-00003102722201179806256:1:999.00
-00003102722201179806765:1:2450.00
-00003102722201179818611:1:946.00
-00003102722201179809452:1:960.00
-00003102722201179811481:1:6350.00
-00003102722201179809452:1:960.00
-00003102722201179818611:1:945.00
-00003102722203019003755:1:1128.00
-00003102722201179805444:1:997.00
-00003102722201179818683:1:9060.00
-00003102722201179809452:1:960.00
-00003102722203019000104:1:269.00
-00003102722201179813790:1:4700.00
-00003102722203019000104:1:2937.00
-00003102722201179808401:1:5883.00
-00003102722201179818605:1:2600.00
-00003102722201179811204:1:990.00
-00003102722201179811204:1:890.00
-00003102722201179813790:1:1480.00
-00003102722201179811408:1:5912.30
-00003102722201179808561:1:900.00
-00003102722203019000374:1:1500.00
-00003102722201179812544:1:1000.00
-00003102722201179806825:1:17458.00
-00003102722201179807467:1:1000.00
-00003102722201179806906:1:564.00
-00003102722201179806906:1:82.00
-00003102722201179803262:1:150.00
-00003102722201179803568:1:875.00
-00003102722201179806906:1:26.00
-00003102722201179808977:1:24150.00
-00003102722201179806906:1:864.00
-00003102722201179803020:1:3536.00
-00003102722201179815749:1:3630.00
-00003102722201179811222:1:1000.00
-00003102722201179806906:1:76.00
-00003102722201179803453:1:1000.00
-00003102722201179804052:1:4710.00
-00003102722201179811481:1:4980.00
-00003102722201179803020:1:1899.00
-00003102722201179806906:1:69.00
-00003102722201179806906:1:53.00
-00003102722201179804768:1:3538.00
-00003102722201179807840:1:895.00
-00003102722201179807840:1:1774.00
-00003102722201179812544:1:1000.00
-00003102722201179803444:1:3022.00
-00003102722201179807840:1:1312.00
-00003102722201179807945:1:26000.80
-00003102722201179808763:1:3185.00
-00003102722201179812544:1:1000.00
-00003102722201179818975:1:299.00
-00003102722201179803444:1:1988.00
-00003102722201179803631:1:8314.00
-00003102722201179812699:1:1000.00
-00003102722203019000215:1:3123.00
-00003102722201179813570:1:19000.00
-00003102722203019000883:1:39800.00
-00003102722201179808401:1:3584.00
-00003102722201179811858:1:1000.00
-00003102722203019004096:1:7210.00
-00003102722201179814525:1:9680.00
-00003102722201179801017:1:3172.00
-00003102722201179812239:1:5080.00
-00003102722201179803596:1:3360.00
-00003102722201179818975:1:299.00
-00003102722201179814525:1:370.00
-00003102722201179814525:1:580.00
-00003102722201179814525:1:1670.00
-00003102722201179809452:1:861.00
-00003102722201179808489:1:1796.00
-00003102722201179809452:1:861.00
-00003102722201179809452:1:861.00
-00003102722201179803905:1:9680.00
-00003102722201179806204:1:7491.00
-00003102722201179809455:1:697.00
-00003102722201179803986:1:977.00
-00003102722203019004096:1:15800.00
-00003102722201179806204:1:4991.00
-00003102722201179806204:1:4817.00
-00003102722201179805190:1:4973.00
-00003102722201179817450:1:4000.00
-00003102722203019000376:1:1000.00
-00003102722201179803152:1:995.00
-00005002681889119291:2:1000.00
-00003102722201179808401:1:1000.00
-00003102722201179817450:1:6000.00
-00003102722201179803099:1:15900.00
-00003102722201179811400:1:4798.00
-00003102722201179803041:1:9260.00
-00003102722201179803668:1:2792.00
-00003102722201179805190:1:3536.00
-00003102722201179806250:1:2200.00
-00003102722201179813999:1:1698.00
-00003102722201179809187:1:4750.00
-00003102722201179813100:1:16930.00
-00003102722201179811133:1:20100.00
-00003102722201179803739:1:1000.00
-00003102722201179813100:1:13258.00
-00003102722201179806261:1:789.00
-00003102722201179802627:1:3770.00
-00003102722201179801155:1:21000.00
-00003102722201179803155:1:18530.00
-00003102722201179803155:1:18460.00
-00003102722201179800796:1:19760.00
-00003102722201179800797:1:19440.00
-00003102722201179801155:1:15500.00
-00003102722201179812211:1:1000.00
-00003102722201179812211:1:1000.00
-00003102722201179801756:1:8091.00
-00003102722201179801734:1:4560.00
-00003102722201179815707:1:11.00
-00003102722201179808270:1:158.00
-00003102722201179809452:1:995.00
-00003102722201179809452:1:995.00
-00003102722201179811858:1:856.00
-00003102722203019000455:1:9998.00
-00003102722201179811413:1:10862.00
-00003102722201179808270:1:18965.00
-00003102722201179814167:1:1000.00
-00003102722201179800790:1:4864.00
-00003102722201179809452:1:3468.00
-00003102722201179800790:1:4847.00
-00003102722201179806711:1:5743.00
-00003102722201179813935:1:986.00
-00003102722201179818647:1:3852.00
-00003102722201179809452:1:896.00
-00003102722201179809121:1:3110.00
-00003102722201179818647:1:4690.00
-00003102722201179804871:1:986.00
-00003102722201179801116:1:4900.00
-00003102722201179803986:1:958.00
-00003102722201179803795:1:7300.00
-00003102722201179803799:1:7947.00
-00003102722201179803799:1:7948.00
-00003102722201179803799:1:8252.00
-00003102722201179812257:1:68.00
-00003102722201179814248:1:1050.00
-00003102722201179803152:1:996.00
-00003102722201179819004:1:1000.00
-00003102722201179809121:1:3510.00
-00003102722201179812282:1:2698.00
-00003102722203019002509:1:1000.00
-00003102722201179803061:1:3950.00
-00003102722201179815707:1:1000.00
-00003102722201179808472:1:410.00
-00003102722201179803222:1:7538.00
-00003102722201179803856:1:12000.00
-00003102722201179806240:1:1000.00
-00003102722203019003961:1:1000.00
-00003102722201179806988:1:8368.00
-00003102722203019000718:1:1000.00
-00003102722201179804287:1:1340.00
-00003102722201179803733:1:755.00
-00003102722201179806906:1:30.00
-00003102722201179806755:1:983.70
-00003102722201179806261:1:779.00
-00003102722201179809105:1:1850.00
-00003102722201179813164:1:1616.00
-00003102722201179802046:1:1000.00
-00003102722201179802739:1:9878.50
-00003102722201179800486:1:957.00
-00003102722201179815798:1:150.00
-00003102722201179818842:1:1000.00
-00003102722201179808269:1:1000.00
-00003102722201179808269:1:1000.00
-00003102722201179808554:1:11089.00
-00003102722201179803739:1:2300.00
-00003102722201179808641:1:866.00
-00003102722201179812151:1:959.00
-00003102722201179808476:1:5837.00
-00003102722201179803739:1:3800.00
-00003102722201179803635:1:1000.00
-00003102722201179803222:1:1423.00
-00003102722201179809455:1:696.00
-00003102722201179813830:1:6501.36
-00003102722203019000791:1:1321.00
-00003102722201179802710:1:225.00
-00003102722201179808489:1:3041.00
-00003102722201179812458:1:635.00
-00003102722201179808160:1:7553.00
-00003102722201179812458:1:427.00
-00003102722201179818842:1:1000.00
-00003102722201179807900:1:22640.38
-00005002681889119292:2:20.00
-00003102722201179801375:1:2000.00
-00003102722201179808072:1:3259.00
-00003102722201179808137:1:980.00
-00003102722201179813930:1:1865.00
-00003102722201179808916:1:3900.00
-00003102722201179808137:1:900.00
-00003102722201179808750:1:2655.00
-00003102722201179801320:1:1300.00
-00003102722201179807794:1:6100.00
-00003102722201179813461:1:2415.00
-00003102722201179812458:1:517.00
-00003102722201179819004:1:998.00
-00003102722201179808821:1:4900.00
-00003102722201179812773:1:3284.00
-00003102722201179803941:1:968.00
-00003102722201179803941:1:899.00
-00003102722201179809121:1:3411.00
-00003102722201179807794:1:40000.00
-00003102722201179808939:1:215.00
-00003102722201179813667:1:1000.00
-00003102722201179803602:1:3485.00
-00003102722201179808392:1:800.00
-00003102722201179803042:1:2337.00
-00003102722201179801756:1:24578.00
-00003102722203019000598:1:1000.00
-00005002681889119292:2:1180.00
-00003102722201179806278:1:2000.00
-00003102722201179806278:1:1000.00
-00003102722201179806278:1:1000.00
-00003102722201179806278:1:1000.00
-00003102722201179806278:1:1100.00
-00003102722201179808072:1:2639.00
-00003102722201179803042:1:83.00
-00003102722201179806278:1:6100.00
-00003102722201179808403:1:131.00
-00003102722201179800460:1:1000.00
-00003102722201179806278:1:6000.00
-00003102722201179805154:1:8800.00
-00003102722201179806278:1:6000.00
-00003102722201179804768:1:3596.00
-00003102722201179803760:1:948.00
-00003102722201179808851:1:32100.00
-00003102722201179809121:1:3452.00
-00003102722203019000764:1:1003.00
-00003102722201179805154:1:4200.00
-00003102722201179806278:1:4500.00
-00003102722203019000764:1:950.00
-00003102722203019000764:1:960.00
-00003102722201179818989:1:1000.00
-00003102722201179803531:1:1125.00
-00003102722203019003961:1:1500.00
-00003102722201179808939:1:364.00
-00003102722201179800494:1:963.00
-00003102722201179800494:1:958.00
-00003102722201179811858:1:1258.00
-00003102722201179800494:1:974.00
-00003102722203019002519:1:1000.00
-00003102722203019003880:1:2919.00
-00003102722201179801116:1:4860.00
-00003102722201179812105:1:980.00
-00003102722201179804279:1:6656.00
-00003102722201179803668:1:2494.00
-00003102722201179801667:1:968.00
-00003102722201179804052:1:3452.00
-00003102722201179801632:1:8750.00
-00003102722201179809091:1:35631.00
-00003102722201179804279:1:3268.00
-00003102722201179803262:1:2255.00
-00003102722203019003961:1:1100.00
-00003102722201179809101:1:4276.00
-00003102722201179806262:1:1000.00
-00003102722201179806800:1:4930.00
-00003102722201179809455:1:707.00
-00003102722201179811096:1:1280.00
-00003102722201179804279:1:1256.00
-00003102722201179809195:1:49.00
-00003102722201179809075:1:1566.00
-00003102722201179806248:1:1050.00
-00003102722201179814170:1:1000.00
-00003102722201179804279:1:515.00
-00003102722201179813667:1:13000.00
-00003102722201179806901:1:32000.00
-00003102722201179803042:1:125.00
-00003102722201179806249:1:5560.00
-00003102722201179803733:1:3600.00
-00003102722201179803611:1:643.00
-00003102722201179803611:1:727.00
-00003102722201179808561:1:700.00
-00003102722201179803935:1:5350.00
-00003102722201179813936:1:990.60
-00003102722201179803611:1:727.00
-00003102722201179815780:1:1000.00
-00003102722201179803611:1:727.00
-00003102722201179800486:1:948.00
-00003102722201179803155:1:19560.00
-00003102722201179813667:1:26800.00
-00003102722201179808414:1:130.00
-00003102722201179811843:1:998.00
-00003102722201179803186:1:3769.00
-00003102722201179804442:1:5127.00
-00003102722201179804279:1:969.00
-00003102722201179813933:1:995.00
-00003102722201179812503:1:1000.00
-00003102722201179803186:1:1167.00
-00003102722201179806715:1:2283.00
-00003102722201179803152:1:997.00
-00003102722201179811416:1:805.00
-00003102722201179801112:1:1975.00
-00003102722201179808038:1:14211.89
-00003102722201179802331:1:6992.00
-00003102722201179806485:1:1000.00
-00003102722201179806225:1:1050.00
-00003102722201179809091:1:49863.00
-00003102722201179810994:1:5918.00
-00003102722201179804791:1:909.00
-00003102722201179806485:1:11800.00
-00003102722201179808497:1:5400.00
-00003102722201179803531:1:5215.00
-00003102722201179808474:1:4165.00
-00003102722201179812032:1:1000.00
-00003102722201179808474:1:6177.00
-00005002681889123933:2:1000.00
-00003102722201179803760:1:945.00
-00003102722201179808257:1:12560.00
-00003102722201179802038:1:2315.00
-00003102722201179804768:1:3218.00
-00003102722201179800634:1:3230.00
-00003102722201179806485:1:1000.00
-00003102722201179808071:1:4800.00
-00003102722201179812251:1:5660.00
-00003102722201179803061:1:3280.00
-00003102722201179812106:1:8050.00
-00003102722201179806485:1:800.00
-00003102722201179817406:1:8600.00
-00003102722201179806983:1:537.00
-00003102722201179808823:1:6019.00
-00003102722201179805928:1:3015.00
-00003102722201179806765:1:9230.00
-00003102722201179805928:1:1808.00
-00003102722201179806485:1:14000.00
-00003102722201179803111:1:1000.00
-00003102722201179804242:1:951.00
-00003102722201179802710:1:1803.11
-00003102722201179809478:1:1000.00
-00003102722201179801657:1:10000.00
-00003102722201179806485:1:1900.00
-00003102722201179808939:1:143.00
-00005002681889119293:2:1189.00
-00003102722201179809478:1:963.00
-00003102722201179801114:1:10.00
-00003102722201179803986:1:980.00
-00003102722201179804242:1:462.00
-00003102722201179806485:1:14000.00
-00003102722201179812503:1:1000.00
-00003102722201179804242:1:975.00
-00003102722201179811843:1:1500.00
-00003102722201179803222:1:9670.00
-00003102722201179801320:1:1540.00
-00003102722201179806825:1:7625.00
-00003102722201179804242:1:11870.00
-00003102722201179801320:1:1592.00
-00003102722201179806485:1:5900.00
-00003102722201179809455:1:707.00
-00003102722201179806825:1:5206.00
-00003102722201179806825:1:5411.00
-00003102722201179803042:1:994.00
-00003102722201179806825:1:5422.00
-00003102722201179811272:1:3121.00
-00003102722201179807433:1:4860.00
-00003102722201179817406:1:5000.00
-00003102722201179807433:1:5640.00
-00003102722201179818649:1:3000.00
-00003102722201179800599:1:1000.00
-00003102722203019000774:1:1000.00
-00003102722201179803111:1:9800.00
-00003102722201179808608:1:1000.00
-00003102722201179818649:1:4400.00
-00003102722201179808939:1:142.00
-00003102722201179809145:1:1000.00
-00003102722201179800486:1:3552.00
-00003102722201179816152:1:3100.00
-00003102722201179808429:1:2548.00
-00003102722201179809478:1:978.00
-00003102722201179802871:1:299.00
-00003102722201179802851:1:2895.00
-00003102722201179801724:1:1000.00
-00003102722201179808236:1:3144.00
-00003102722201179818988:1:1000.00
-00003102722201179803262:1:3766.00
-00003102722201179803791:1:300.00
-00003102722201179802851:1:3775.00
-00003102722201179802851:1:12385.00
-00003102722201179809128:1:1194.00
-00003102722201179812206:1:980.00
-00003102722201179812206:1:765.00
-00003102722203019003810:1:1378.67
-00003102722201179803819:1:970.00
-00003102722201179812206:1:890.00
-00003102722201179808460:1:6485.00
-00003102722201179806232:1:5875.00
-00003102722201179808891:1:9900.00
-00003102722201179803155:1:16215.00
-00003102722201179809091:1:28862.00
-00003102722201179813935:1:966.00
-00003102722201179817869:1:985.00
-00003102722203019000774:1:49000.00
-00003102722201179808891:1:8100.00
-00003102722201179817869:1:850.00
-00003102722201179801122:1:2060.00
-00003102722201179817869:1:869.00
-00003102722201179803444:1:2322.00
-00003102722201179803444:1:2186.00
-00003102722201179801122:1:950.00
-00003102722201179803941:1:899.00
-00003102722201179803941:1:768.00
-00003102722201179809478:1:996.00
-00003102722203019000884:1:7980.00
-00003102722201179803794:1:999.80
-00005002681889125007:2:1047.00
-00003102722201179809132:1:3867.00
-00003102722201179803410:1:8800.00
-00003102722203019000884:1:768.00
-00003102722201179803986:1:945.00
-00003102722201179803794:1:998.00
-00003102722201179809132:1:864.00
-00003102722201179803794:1:999.00
-00003102722201179803868:1:12000.00
-00003102722201179802871:1:820.00
-00003102722201179809499:1:1125.00
-00003102722201179812151:1:497.00
-00003102722201179809132:1:4587.00
-00003102722203019003869:1:2700.00
-00003102722201179815579:1:1000.00
-00003102722201179811319:1:9200.00
-00003102722201179811319:1:7300.00
-00003102722201179808576:1:2655.00
-00003102722201179812457:1:2243.00
-00003102722201179806704:1:47300.00
-00003102722201179812457:1:2357.00
-00003102722201179807096:1:250.00
-00003102722201179812457:1:2433.00
-00003102722201179803868:1:1000.00
-00003102722201179803751:1:1890.00
-00003102722203019000790:1:6580.00
-00003102722201179803568:1:629.00
-00003102722201179806256:1:998.00
-00003102722201179803868:1:1000.00
-00003102722201179803751:1:2894.00
-00003102722201179807096:1:1000.00
-00003102722201179809455:1:701.00
-00003102722201179806105:1:520.00
-00003102722201179806234:1:977.00
-00003102722203019000764:1:966.00
-00003102722201179805983:1:865.00
-00003102722201179818975:1:368.00
-00003102722201179811489:1:2100.00
-00003102722201179803007:1:1000.00
-00003102722201179802344:1:3050.00
-00003102722203019000807:1:1000.00
-00003102722201179801724:1:1873.00
-00003102722201179803868:1:1000.00
-00003102722201179815523:1:1000.00
-00003102722201179803780:1:1912.00
-00003102722201179812282:1:3296.00
-00003102722201179802411:1:1895.00
-00003102722201179802411:1:1189.00
-00003102722201179807483:1:495.00
-00003102722201179805190:1:2245.00
-00003102722201179807980:1:3752.80
-00003102722203019000785:1:2574.00
-00003102722201179817484:1:1000.00
-00003102722201179807980:1:3752.80
-00003102722201179801189:1:4080.00
-00003102722201179809478:1:979.00
-00003102722201179818627:1:1000.00
-00003102722201179807980:1:3752.80
-00003102722201179807980:1:3752.80
-00003102722201179802411:1:3589.00
-00003102722201179806727:1:1947.00
-00003102722201179807980:1:122.50
-00003102722201179802411:1:1159.00
-00005002681889125051:2:1006.00
-00003102722201179808069:1:790.00
-00003102722201179804439:1:3897.00
-00003102722201179803155:1:21580.00
-00003102722201179808069:1:3150.00
-00003102722201179811408:1:6101.00
-00003102722201179806883:1:1000.00
-00003102722201179808069:1:1758.00
-00003102722201179814464:1:2500.00
-00003102722201179809452:1:5312.00
-00003102722201179809105:1:3270.00
-00003102722201179809452:1:850.00
-00003102722201179811146:1:9992.00
-00003102722201179806825:1:16382.00
-00003102722201179801162:1:1205.00
-00003102722201179808877:1:19800.00
-00003102722201179807969:1:1462.00
-00003102722201179804439:1:3897.00
-00003102722201179806825:1:8862.00
-00003102722203019003754:1:1000.00
-00003102722201179801162:1:6108.00
-00003102722201179811313:1:2865.00
-00003102722201179817419:1:1000.00
-00003102722201179811313:1:1257.00
-00003102722201179817771:1:3697.00
-00003102722201179817419:1:500.00
-00003102722201179801162:1:2803.00
-00003102722201179801162:1:2017.00
-00003102722201179807969:1:162.00
-00003102722201179811313:1:1384.00
-00003102722201179812699:1:16000.00
-00003102722201179807969:1:632.00
-00003102722201179803155:1:14375.00
-00003102722201179808821:1:4860.00
-00003102722201179807969:1:276.00
-00003102722201179803155:1:12875.00
-00003102722201179801162:1:1030.00
-00003102722201179807969:1:445.00
-00003102722201179801632:1:8500.00
-00003102722201179806971:1:3956.00
-00003102722201179801189:1:2018.00
-00005002681889125052:2:2852.00
-00003102722201179808821:1:4983.00
-00003102722201179804434:1:1000.00
-00003102722201179808824:1:3680.00
-00003102722201179808824:1:3645.00
-00003102722201179808824:1:3580.00
-00003102722201179806261:1:771.00
-00005002681889119901:2:1000.00
-00005002681889125002:2:1000.00
-00003102722201179801781:1:1200.00
-00003102722201179808131:1:5868.00
-00003102722201179803568:1:528.00
-00003102722201179808151:1:1000.00
-00003102722201179804203:1:13950.00
-00003102722201179818605:1:2600.00
-00003102722201179818765:1:5400.00
-00003102722201179806240:1:1000.00
-00003102722201179809499:1:852.00
-00003102722201179811843:1:487.00
-00003102722201179806709:1:2495.00
-00003102722201179809478:1:799.00
-00003102722201179806709:1:695.00
-00003102722201179809499:1:481.00
-00003102722201179818765:1:26250.00
-00003102722201179802724:1:4200.00
-00003102722201179806709:1:2566.00
-00003102722201179809499:1:983.00
-00003102722201179806489:1:1000.00
-00003102722201179805427:1:4490.00
-00003102722201179808440:1:3565.00
-00003102722201179809499:1:753.00
-00003102722201179802724:1:5100.00
-00003102722201179809499:1:853.00
-00003102722201179809499:1:621.00
-00003102722201179809093:1:5110.00
-00003102722201179809499:1:983.00
-00003102722201179803298:1:1001.00
-00003102722201179801714:1:1000.00
-00003102722201179816611:1:951.00
-00003102722201179808585:1:998.50
-00003102722201179806709:1:1545.00
-00003102722201179806448:1:987.00
-00003102722201179817442:1:299.00
-00003102722201179818648:1:1000.00
-00003102722201179806774:1:6426.00
-00003102722201179816611:1:951.00
-00003102722201179817442:1:1000.00
-00003102722201179818648:1:1999.00
-00003102722201179815521:1:1000.00
-00003102722201179806779:1:3285.00
-00003102722201179818648:1:2000.00
-00003102722201179817451:1:987.00
-00003102722201179804768:1:3815.00
-00003102722201179808585:1:998.50
-00003102722201179803668:1:2993.00
-00003102722201179809499:1:721.00
-00003102722201179808248:1:1987.00
-00003102722201179807445:1:1000.00
-00003102722201179803954:1:9998.00
-00003102722201179808248:1:4637.00
-00003102722201179809455:1:702.00
-00003102722201179812022:1:2680.00
-00003102722201179804888:1:4012.20
-00003102722201179801843:1:3838.00
-00003102722201179804888:1:7011.11
-00003102722201179812022:1:2480.00
-00003102722201179809453:1:5398.00
-00003102722201179801843:1:1618.00
-00003102722201179801843:1:3338.00
-00003102722201179805434:1:685.00
-00003102722201179819004:1:1000.00
-00005002681889125906:2:1000.00
-00003102722201179806709:1:2286.00
-00003102722201179806709:1:2656.00
-00003102722201179808965:1:3000.08
-00003102722201179801664:1:9132.00
-00003102722201179819004:1:1000.00
-00003102722201179806709:1:2844.00
-00003102722201179800494:1:965.00
-00003102722201179806709:1:2325.00
-00003102722201179803237:1:7269.00
-00003102722201179806709:1:1148.00
-00003102722201179807433:1:866.00
-00003102722201179800494:1:975.00
-00003102722201179804781:1:11430.00
-00003102722201179806709:1:2635.00
-00003102722201179808965:1:9666.85
-00003102722201179800494:1:892.00
-00003102722201179806709:1:1858.00
-00003102722201179807433:1:854.00
-00003102722201179806709:1:2868.00
-00003102722201179806709:1:2635.00
-00003102722201179806709:1:1488.00
-00003102722201179806709:1:4495.00
-00003102722201179806709:1:1825.00
-00003102722201179806779:1:1285.00
-00003102722201179806234:1:753.00
-00003102722201179808965:1:5623.79
-00003102722201179818626:1:506.00
-00003102722201179806956:1:298.00
-00003102722201179809068:1:1285.00
-00003102722201179819004:1:7040.00
-00003102722201179806779:1:1714.00
-00003102722201179803986:1:965.00
-00003102722201179809453:1:300.00
-00003102722201179801146:1:23865.00
-00003102722201179808732:1:5100.00
-00003102722201179819004:1:996.00
-00003102722201179811103:1:15600.00
-00003102722203019003991:1:11528.00
-00003102722201179819004:1:380.00
-00003102722201179806956:1:4500.00
-00003102722201179813871:1:24875.00
-00003102722201179818955:1:1000.00
-00003102722203019000599:1:1000.00
-00003102722201179811103:1:23800.00
-00003102722203019000599:1:999.00
-00003102722201179804756:1:2480.00
-00003102722201179809453:1:997.00
-00003102722201179809453:1:993.00
-00003102722201179808769:1:3600.00
-00003102722201179809188:1:8017.00
-00003102722201179809453:1:991.00
-00003102722201179807429:1:2855.00
-00003102722201179809188:1:11575.00
-00003102722201179809453:1:992.00
-00003102722201179807429:1:918.00
-00003102722203019000799:1:1583.00
-00003102722201179807429:1:2032.00
-00003102722201179809453:1:993.00
-00003102722201179802694:1:6990.00
-00003102722201179802694:1:3850.00
-00003102722201179809453:1:987.00
-00003102722201179812123:1:796.00
-00003102722201179809453:1:994.00
-00003102722201179800790:1:3762.00
-00005002681889119901:2:100.00
-00003102722201179805426:1:7400.00
-00003102722201179800790:1:2846.00
-00003102722201179818989:1:11950.00
-00003102722201179817865:1:998.00
-00003102722201179812128:1:5539.00
-00003102722201179809453:1:992.00
-00003102722201179817865:1:999.00
-00003102722201179806961:1:7521.00
-00003102722201179812211:1:1000.00
-00003102722201179800790:1:2943.00
-00005002681889125007:2:2074.00
-00003102722201179812211:1:1000.00
-00003102722201179809453:1:991.00
-00003102722201179817865:1:998.00
-00003102722203019000765:1:1000.00
-00003102722201179804756:1:2380.00
-00003102722201179808561:1:900.00
-00003102722201179808561:1:850.00
-00003102722201179802710:1:4172.40
-00003102722201179818654:1:863.00
-00003102722201179818705:1:5481.00
-00003102722201179818654:1:863.00
-00003102722201179818654:1:863.00
-00003102722201179806163:1:1000.00
-00005002681889123709:2:681.00
-00003102722201179808120:1:2300.00
-00003102722201179803986:1:936.00
-00003102722203019003868:1:1297.00
-00003102722201179804628:1:20000.00
-00003102722201179810200:1:958.00
-00003102722203019003868:1:2975.00
-00003102722201179818654:1:863.00
-00003102722201179803409:1:1000.00
-00003102722203019000195:1:2143.00
-00003102722201179803409:1:641.00
-00003102722201179805434:1:673.00
-00003102722201179803409:1:1641.00
-00003102722201179803409:1:1641.00
-00003102722203019000195:1:5214.00
-00003102722201179803409:1:641.00
-00003102722201179805436:1:1000.00
-00003102722203019003870:1:1598.00
-00003102722201179809455:1:697.00
-00003102722201179806466:1:999.00
-00003102722201179806466:1:998.00
-00003102722201179803409:1:1153.00
-00003102722201179803409:1:641.00
-00003102722201179806466:1:999.00
-00003102722201179805436:1:1000.00
-00003102722201179806466:1:998.00
-00003102722201179808151:1:213.00
-00003102722201179806466:1:998.00
-00003102722201179805436:1:1000.00
-00005002681889123709:2:712.00
-00003102722201179806973:1:3796.00
-00003102722201179803611:1:769.00
-00003102722201179803611:1:795.00
-00003102722203019004096:1:7850.00
-00003102722201179803611:1:795.00
-00003102722201179801820:1:25852.58
-00003102722203019004096:1:7830.00
-00003102722201179817866:1:999.00
-00003102722203019004096:1:8350.00
-00003102722201179808315:1:8000.00
-00003102722201179808040:1:5790.00
-00003102722201179804756:1:2490.00
-00003102722201179807956:1:1203.50
-00003102722201179808040:1:4089.00
-00003102722201179808040:1:5768.90
-00003102722201179803760:1:1000.00
-00003102722201179814167:1:9868.00
-00003102722201179817479:1:1000.00
-00003102722201179808906:1:7319.00
-00003102722201179803539:1:1000.00
-00003102722201179808723:1:988.00
-00003102722201179808954:1:4356.00
-00003102722201179817865:1:998.00
-00003102722203019000723:1:1890.00
-00003102722201179801724:1:956.00
-00003102722201179817865:1:998.00
-00003102722201179817451:1:986.00
-00003102722201179817865:1:999.00
-00003102722201179802642:1:14090.00
-00003102722201179817451:1:987.00
-00003102722201179808249:1:1000.00
-00003102722201179804052:1:5170.00
-00003102722201179812132:1:5194.00
-00003102722201179811109:1:10.00
-00003102722201179808806:1:1000.00
-00003102722201179802609:1:13980.00
-00003102722201179810994:1:4180.00
-00003102722201179806409:1:7900.00
-00003102722201179801116:1:1780.00
-00003102722201179803405:1:2834.00
-00003102722201179807266:1:1000.00
-00003102722203019000120:1:969.00
-00003102722201179801116:1:2430.00
-00003102722201179808240:1:7900.00
-00003202C16289149900:2:1250.00
-00003102722201179804781:1:2187.00
-00003102722201179801187:1:1650.00
-00003102722201179813694:1:1000.00
-00003102722201179804781:1:421.00
-00003102722201179806409:1:2500.00
-00003102722201179808240:1:980.00
-00003102722201179804781:1:537.00
-00003102722201179812131:1:620.00
-00003102722201179808240:1:960.00
-00003102722201179804781:1:2780.00
-00003102722201179813171:1:1000.00
-00003102722201179808440:1:9310.00
-00003102722201179808802:1:1000.00
-00003102722201179802309:1:955.50
-00003102722201179801187:1:2400.00
-00003102722203019000120:1:994.00
-00003102722201179808876:1:9728.00
-00003102722201179807758:1:2680.00
-00003102722201179814230:1:11000.00
-00003102722201179806978:1:2997.00
-00003102722201179818626:1:500.00
-00003102722201179804781:1:598.00
-00003102722201179804263:1:16750.00
-00003102722201179814230:1:3000.00
-00003102722201179807099:1:3860.00
-00003102722201179814240:1:1000.00
-00003102722201179804781:1:1980.00
-00003102722201179802707:1:10060.00
-00003102722201179809455:1:697.00
-00003102722201179807099:1:5230.00
-00003102722201179806256:1:899.00
-00003102722201179813752:1:4968.00
-00003102722201179804781:1:921.00
-00003102722201179813752:1:3786.00
-00003102722201179813752:1:1963.00
-00003102722201179811988:1:9655.00
-00003102722201179807610:1:8996.00
-00003102722201179801135:1:15386.40
-00003102722201179808561:1:750.00
-00003102722201179814215:1:4680.00
-00003102722203019000878:1:4976.00
-00003102722201179807610:1:8947.00
-00003102722201179803223:1:13500.00
-00003102722201179813466:1:8352.00
-00003102722201179801710:1:4610.00
-00003102722201179807610:1:8893.00
-00003102722201179804970:1:2400.00
-00003102722201179805426:1:1000.00
-00003102722201179804970:1:1930.00
-00003102722201179802651:1:985.00
-00003102722201179807756:1:1207.00
-00003102722201179814202:1:2986.32
-00003102722201179813933:1:975.00
-00003102722201179817451:1:8560.00
-00003102722201179806246:1:9690.00
-00003102722201179804970:1:4750.00
-00003102722201179806246:1:9690.00
-00003102722201179804970:1:3940.00
-00003102722201179809478:1:15000.00
-00003102722201179806246:1:9770.00
-00003102722201179817451:1:976.00
-00003102722201179809478:1:15000.00
-00003102722201179817451:1:987.00
-00003102722201179807610:1:5000.00
-00003102722201179806246:1:8960.00
-00003102722201179808172:1:1364.00
-00003102722201179807433:1:3570.00
-00003102722201179809134:1:4112.00
-00003102722203019004096:1:2830.00
-00003102722201179811031:1:1000.00
-00003102722201179808576:1:1722.00
-00003102722201179809134:1:22110.00
-00003102722201179808576:1:1099.00
-00003102722203019004096:1:2310.00
-00003102722201179808576:1:299.00
-00003102722201179801710:1:20085.00
-00003102722201179806779:1:3198.00
-00003102722201179802644:1:9999.00
-00003102722201179802669:1:29000.19
-00003102722201179803986:1:808.00
-00003102722201179807433:1:920.00
-00005002681889123918:2:1600.00
-00003102722201179809080:1:2000.00
-00003102722201179813184:1:2058.00
-00003102722201179817700:1:1000.00
-00003102722201179801710:1:2018.00
-00003102722201179813182:1:8694.00
-00003102722201179803986:1:978.00
-00003102722201179803409:1:997.00
-00003102722201179803409:1:997.00
-00003102722201179803409:1:997.00
-00003102722201179811031:1:6820.00
-00003102722201179811307:1:800.00
-00003102722201179801710:1:2980.00
-00003102722201179806906:1:12400.00
-00003102722201179818626:1:505.00
-00003102722201179806883:1:998.00
-00003102722201179802609:1:14150.00
-00003102722201179806261:1:765.00
-00003102722201179805435:1:5000.00
-00003102722201179803752:1:1000.00
-00003102722201179808520:1:2649.00
-00003102722201179805435:1:8000.00
-00003102722201179807758:1:2000.00
-00003102722203019000120:1:998.00
-00003102722203019000120:1:998.00
-00003102722201179811858:1:1368.00
-00003102722203019000120:1:996.00
-00003102722201179808623:1:700.00
-00003102722201179806711:1:4783.00
-00003102722201179809478:1:978.00
-00003102722201179807408:1:8910.00
-00003102722201179808294:1:6000.00
-00003102722203019003753:1:2899.00
-00003102722203019003874:1:360.00
-00003102722201179801184:1:39000.00
-00003102722201179801582:1:3000.00
-00003102722203019003753:1:3003.00
-00003102722201179807498:1:6960.00
-00003102722201179801582:1:1505.00
-00003102722201179803986:1:980.00
-00003102722201179803611:1:691.00
-00003102722203019003753:1:2992.00
-00003102722201179806261:1:762.00
-00003102722201179803611:1:691.00
-00003102722201179803611:1:691.00
-00003102722201179806261:1:1543.00
-00003102722201179808963:1:24500.00
-00003102722203019003753:1:3000.30
-00003102722201179806261:1:856.00
-00003102722201179803041:1:9980.00
-00003102722203019003753:1:3003.00
-00003102722203019000763:1:1000.00
-00003102722201179806448:1:974.00
-00003102722203019003753:1:2978.60
-00003102722201179807099:1:5980.00
-00003102722203019003753:1:2998.90
-00003102722203019004131:1:20.00
-00003102722201179803237:1:10298.00
-00003102722201179803155:1:11860.00
-00003102722203019003753:1:2999.60
-00003102722201179804398:1:8560.00
-00003102722201179818768:1:1000.00
-00003102722203019003753:1:3030.00
-00003102722203019003753:1:2999.80
-00003102722201179811109:1:10.00
-00003102722203019003753:1:2999.80
-00003102722201179807266:1:4990.00
-00003102722203019003753:1:3004.00
-00003102722201179811109:1:10.00
-00003102722201179805444:1:995.00
-00003102722201179801184:1:8000.00
-00003102722203019000120:1:999.00
-00003102722201179806779:1:3388.00
-00003102722201179817866:1:996.00
-00003102722203019003753:1:2999.80
-00003102722201179806774:1:8355.00
-00003102722201179806774:1:5085.00
-00003102722203019003753:1:2999.60
-00003102722201179806261:1:756.00
-00003102722201179811133:1:12100.00
-00003102722203019003753:1:3002.00
-00003102722203019003753:1:2999.60
-00003102722201179803041:1:9560.00
-00003102722203019003753:1:2998.80
-00003102722201179811338:1:10524.00
-00003102722203019000765:1:1738.00
-00003102722201179806942:1:5000.00
-00003102722201179811408:1:991.00
-00003102722201179808414:1:402.00
-00005002681889120318:2:1000.00
-00003102722201179813694:1:2104.00
-00005002681889123757:2:980.00
-00003102722201179806312:1:1000.00
-00005002681889123757:2:120.00
-00003102722201179806779:1:3398.00
-00003102722201179806312:1:1000.00
-00003102722201179801501:1:3145.00
-00003102722201179801501:1:2115.00
-00003102722201179806312:1:1000.00
-00003102722201179814464:1:518.00
-00003102722203019000104:1:2682.00
-00003102722201179813183:1:1000.00
-00005002681889123757:2:1000.00
-00003102722203019000104:1:1869.00
-00003102722201179813183:1:1000.00
-00003102722201179801501:1:2256.00
-00003102722201179817866:1:952.00
-00003102722201179817866:1:952.00
-00003102722201179817866:1:952.00
-00003102722201179806250:1:10000.00
-00003102722201179804052:1:1883.00
-00003102722201179809124:1:5037.00
-00005002681889123761:2:1208.00
-00003102722201179803428:1:9315.00
-00003102722201179803265:1:20.00
-00003102722201179806312:1:1000.00
-00003102722201179806779:1:3350.00
-00003102722201179803265:1:4300.00
-00003102722201179806312:1:1000.00
-00003102722201179806800:1:4900.00
-00003102722201179812304:1:1200.00
-00003102722201179806312:1:1000.00
-00003102722201179803635:1:999.99
-00003102722201179813793:1:8730.00
-00003102722201179803635:1:989.99
-00003102722201179803635:1:1000.00
-00003102722201179803635:1:1000.00
-00003102722201179803635:1:1000.00
-00003102722201179803635:1:999.99
-00003102722203019000133:1:990.00
-00003102722201179805438:1:1380.00
-00003102722201179801116:1:4165.00
-00003102722201179808952:1:6575.00
-00003102722201179819003:1:997.00
-00003102722201179806587:1:6529.00
-00003102722201179802780:1:8908.00
-00003102722201179808641:1:990.00
-00003102722201179808641:1:999.00
-00003102722201179806256:1:998.00
-00003102722201179808641:1:3400.00
-00003102722201179814157:1:1000.00
-00003102722201179815782:1:1000.00
-00003102722201179808641:1:4800.00
-00003102722201179816152:1:5111.50
-00003102722201179818626:1:505.00
-00003102722201179808641:1:999.00
-00003102722201179812160:1:3000.00
-00003102722201179812160:1:9000.00
-00003102722201179812370:1:1000.00
-00003102722201179808641:1:999.00
-00003102722201179803047:1:1000.00
-00003102722201179805444:1:996.00
-00003102722201179802038:1:5402.00
-00003102722201179818792:1:9806.00
-00003102722201179808732:1:2500.00
-00003102722201179806710:1:6800.00
-00003102722201179813999:1:1997.00
-00003102722201179812380:1:1000.00
-00003102722201179817451:1:986.00
-00003102722201179803720:1:4565.00
-00003102722201179802405:1:2563.00
-00003102722201179808641:1:1800.00
-00003102722201179806448:1:958.00
-00003102722203019003758:1:2635.00
-00003102722201179803720:1:4860.00
-00003102722203019003758:1:1856.00
-00003102722201179807450:1:6356.00
-00003102722201179803720:1:1138.00
-00003102722201179810251:1:1000.00
-00003102722201179803854:1:9980.00
-00003102722201179812211:1:1000.00
-00003102722201179810251:1:1000.00
-00003102722201179801116:1:4120.00
-00003102722201179812211:1:1000.00
-00003102722201179810251:1:1000.00
-00003102722201179814116:1:1000.00
-00003102722201179803962:1:996.00
-00003102722201179802405:1:3253.00
-00003102722201179803962:1:19996.00
-00003102722201179807691:1:992.00
-00003102722201179807691:1:993.00
-00003102722201179812151:1:100.00
-00003102722201179812151:1:990.00
-00003102722201179813567:1:953.03
-00003102722201179807691:1:995.00
-00003102722201179807691:1:997.00
-00003102722201179804628:1:15000.00
-00003102722201179803420:1:2880.00
-00003102722201179815559:1:985.00
-00003102722201179806261:1:758.00
-00003102722201179813164:1:986.00
-00003102722201179815587:1:4570.00
-00003102722201179807907:1:6253.00
-00003102722201179808474:1:3430.00
-00003102722201179807907:1:7615.00
-00003102722201179803409:1:274.00
-00003102722201179812151:1:1000.00
-00003102722201179808474:1:4356.00
-00003102722201179803926:1:320.00
-00003102722201179803409:1:241.00
-00003102722201179803409:1:241.00
-00003102722201179803409:1:241.00
-00003102722201179806261:1:589.00
-00003102722201179803409:1:241.00
-00003102722201179803409:1:241.00
-00003102722201179803409:1:241.00
-00003102722201179806261:1:325.00
-00003102722203019000653:1:1125.00
-00003102722201179803409:1:241.00
-00003102722201179803409:1:241.00
-00003102722201179809452:1:2350.00
-00003102722201179803409:1:241.00
-00003102722201179803409:1:241.00
-00003102722201179801588:1:13680.00
-00003102722201179803409:1:241.00
-00003102722201179808433:1:2860.00
-00003102722201179801588:1:15584.00
-00003102722201179801710:1:1708.00
-00003102722201179803986:1:968.00
-00003102722201179811858:1:1071.00
-00003102722201179808939:1:83.00
-00003102722201179802049:1:9233.00
-00003102722201179802892:1:285.00
-00003102722201179807909:1:3819.00
-00003102722203019000764:1:998.00
-00003102722201179801752:1:13800.00
-00003102722201179806245:1:990.00
-00003102722201179801752:1:9800.00
-00003102722201179818626:1:499.00
-00003102722203019000764:1:998.00
-00003102722201179803733:1:845.00
-00003102722201179808480:1:1005.00
-00003102722201179803454:1:2869.43
-00003102722201179802051:1:985.00
-00003102722201179802051:1:965.00
-00003102722201179802051:1:975.00
-00003102722203019000330:1:190.00
-00003102722201179802051:1:985.00
-00003102722201179802051:1:975.00
-00003102722201179802051:1:945.00
-00003102722201179802051:1:975.00
-00003102722201179802051:1:935.00
-00003102722203019000878:1:732.00
-00003102722201179811220:1:9888.80
-00003102722201179808769:1:7600.00
-00003102722201179802693:1:9780.00
-00003102722201179803668:1:2521.00
-00003102722201179802693:1:4780.00
-00003102722201179802693:1:5760.00
-00003102722201179815782:1:1215.00
-00003102722201179808901:1:239.00
-00003102722201179815782:1:1670.00
-00003102722201179815782:1:2130.00
-00003102722201179817451:1:965.00
-00003102722201179806240:1:1000.00
-00003102722201179812257:1:10.06
-00003102722201179807263:1:1000.00
-00003102722201179809478:1:978.00
-00003102722201179809478:1:996.00
-00003102722201179806953:1:12000.00
-00003102722201179803532:1:1125.00
-00003102722201179808716:1:2260.00
-00003102722201179800474:1:4693.00
-00003102722201179808716:1:2000.00
-00003102722201179808764:1:1000.00
-00003102722201179813974:1:1826.00
-00003102722201179803262:1:4576.00
-00003102722201179803799:1:6137.00
-00003102722201179801626:1:1000.00
-00003102722201179818604:1:10500.00
-00003102722201179803532:1:12535.00
-00003102722201179803799:1:1912.00
-00003102722203019003755:1:2295.00
-00003102722201179809499:1:631.00
-00003102722201179809499:1:631.00
-00003102722201179812257:1:11.00
-00003102722201179809499:1:641.00
-00003202C16289149900:2:5523.00
-00003102722201179809499:1:651.00
-00003102722201179808476:1:5482.00
-00003102722201179809499:1:665.00
-00003102722201179809499:1:671.00
-00003102722201179809499:1:681.00
-00003102722201179801112:1:637.00
-00003102722201179808939:1:65.00
-00003102722201179809499:1:691.00
-00003102722201179809499:1:12.00
-00003102722201179802743:1:3582.00
-00005002681889125007:2:2816.00
-00003102722201179817869:1:885.00
-00003102722203019000301:1:968.00
-00003102722201179817869:1:699.00
-00003102722201179817869:1:780.00
-00005002681889125007:2:7046.00
-00003102722201179818654:1:935.00
-00003102722201179803287:1:3730.00
-00003102722201179804784:1:9473.00
-00003102722201179818654:1:935.00
-00003102722201179803908:1:1000.00
-00003102722201179818654:1:935.00
-00003102722201179818607:1:985.00
-00003102722201179818654:1:935.00
-00003102722201179806106:1:694.00
-00003102722201179812457:1:933.00
-00003102722201179812457:1:935.00
-00003102722201179803099:1:998.00
-00003102722201179817696:1:1000.00
-00003102722203019004096:1:4810.00
-00003102722201179812457:1:954.00
-00003102722201179804290:1:2835.00
-00003102722203019003761:1:2020.00
-00003102722201179812301:1:1000.00
-00003102722203019004096:1:4580.00
-00003102722203019004096:1:3280.00
-00003102722201179812251:1:17900.00
-00003102722201179808393:1:3500.00
-00003102722201179814210:1:8965.00
-00003102722201179817696:1:20000.00
-00003102722201179803792:1:2357.00
-00003102722201179801135:1:12084.50
-00003102722203019000717:1:1520.00
-00003102722201179808404:1:10000.05
-00003102722201179815723:1:1000.00
-00003102722201179800486:1:974.00
-00003102722201179803640:1:3500.00
-00003102722201179808821:1:3985.00
-00003102722201179809478:1:985.00
-00003102722201179802196:1:100.00
-00003102722201179802196:1:950.00
-00003102722201179808821:1:3760.00
-00003102722201179808821:1:3988.00
-00003102722201179818652:1:13125.00
-00003102722201179812063:1:7586.00
-00003102722203019000301:1:995.00
-00003102722201179807000:1:1986.00
-00003102722201179818690:1:5300.00
-00003102722201179812151:1:490.00
-00003102722201179812131:1:580.00
-00003102722201179814221:1:900.00
-00003102722201179817439:1:6000.00
-00003102722201179813694:1:854.00
-00003102722203019000799:1:1538.00
-00003102722201179808939:1:81.00
-00003102722201179808402:1:1000.00
-00003102722203019000301:1:995.00
-00003102722201179812206:1:4000.00
-00003102722201179813516:1:1000.00
-00003102722201179803733:1:997.00
-00003102722201179808402:1:1000.00
-00003102722203019003811:1:1001.00
-00003102722201179801090:1:3800.00
-00003102722201179800962:1:100.00
-00003102722201179808850:1:976.00
-00003102722201179803020:1:846.00
-00003102722201179808579:1:7000.00
-00003102722201179811400:1:3988.00
-00003102722201179813461:1:2852.00
-00003102722201179812206:1:970.00
-00003102722203019000878:1:5273.00
-00003102722201179817451:1:987.00
-00003102722201179805427:1:2400.00
-00003102722201179808402:1:1000.00
-00003102722201179812206:1:820.00
-00003102722201179813461:1:2786.00
-00003102722201179808764:1:28860.00
-00003102722201179808945:1:351.00
-00003102722203019000878:1:4146.00
-00003102722201179808850:1:1976.00
-00003102722203019000300:1:1000.00
-00005002681889123761:2:1825.00
-00003102722201179806700:1:2858.00
-00003102722203019002777:1:1000.00
-00003102722201179803042:1:162.00
-00005002681889123761:2:1058.00
-00003102722201179806700:1:2868.00
-00003102722201179802006:1:1000.00
-00003102722203019000301:1:985.00
-00003102722201179819003:1:980.00
-00003102722201179808579:1:11400.00
-00003102722203019000717:1:44528.00
-00003102722201179808253:1:856.00
-00003102722201179804440:1:3920.00
-00003102722201179809125:1:2000.00
-00003102722201179805152:1:5665.00
-00003102722201179804440:1:6590.00
-00003102722203019000717:1:45990.00
-00003102722201179808253:1:793.00
-00003102722201179818605:1:7000.00
-00003102722201179809125:1:1500.00
-00003102722201179804440:1:4870.00
-00003102722201179808579:1:11300.00
-00003102722201179807908:1:1182.00
-00003102722201179803706:1:710.00
-00003102722201179807908:1:425.00
-00003102722203019004080:1:19832.00
-00003102722201179804277:1:1000.00
-00003102722201179803706:1:706.00
-00003102722201179808579:1:10000.00
-00003102722201179803798:1:1000.00
-00003102722201179803846:1:18001.08
-00003102722201179803706:1:730.00
-00003102722201179817425:1:9939.00
-00003102722203019000394:1:1000.00
-00003102722203019000717:1:25940.00
-00003102722201179803706:1:740.00
-00003102722201179804638:1:10000.00
-00003102722201179803160:1:1000.00
-00003102722201179812388:1:2500.00
-00003102722201179817425:1:9939.00
-00003102722201179803706:1:760.00
-00003102722201179817771:1:3687.00
-00003102722201179803020:1:3927.00
-00003102722201179817425:1:9879.00
-00003102722201179805426:1:5400.00
-00003102722201179808245:1:6163.00
-00003102722201179806765:1:4780.00
-00003102722201179817425:1:9820.00
-00003102722201179803706:1:855.00
-00003102722201179805426:1:4850.00
-00003102722201179803706:1:790.00
-00003102722201179800906:1:1000.00
-00003102722201179809478:1:978.00
-00003102722201179808042:1:1000.00
-00003102722201179803706:1:939.00
-00003102722203019000878:1:4972.00
-00003102722201179809468:1:1000.00
-00003102722201179808172:1:4592.00
-00003102722201179808042:1:2000.00
-00003102722201179808087:1:6032.19
-00003102722201179808644:1:501.00
-00003102722201179808939:1:94.00
-00003102722201179808042:1:2000.00
-00003102722201179808042:1:3000.00
-00003102722201179801633:1:4230.00
-00003102722201179808042:1:2000.00
-00003102722201179808087:1:6026.41
-00005002681889125907:2:1072.00
-00003102722201179804277:1:20000.00
-00003102722201179808816:1:1500.00
-00003102722201179817414:1:1000.00
-00003102722201179808042:1:8000.00
-00003102722201179808644:1:478.00
-00003102722203019003961:1:2480.00
-00003102722201179817719:1:1000.00
-00003102722201179803635:1:998.99
-00003102722203019000799:1:806.00
-00003102722203019000717:1:16895.00
-00003102722201179803967:1:5000.00
-00003102722201179803965:1:1000.00
-00003102722201179804756:1:600.00
-00003102722201179805421:1:8633.00
-00003102722201179803152:1:996.00
-00003102722201179801623:1:1000.00
-00003102722201179801658:1:100.00
-00003102722201179803635:1:658.00
-00003102722203019003868:1:3987.00
-00003102722201179814238:1:26877.00
-00003102722203019000717:1:39585.00
-00003102722201179817719:1:1235.80
-00003102722201179817719:1:1265.50
-00003102722201179817719:1:1359.90
-00005002681889120304:2:1000.00
-00003102722201179803635:1:980.00
-00003102722201179817719:1:2355.80
-00003102722201179812063:1:1720.00
-00003102722201179804719:1:1098.00
-00005002681889123762:2:1000.00
-00003102722201179810251:1:800.00
-00003102722201179801774:1:2750.00
-00003102722201179817719:1:1321.08
-00003102722201179803160:1:2480.00
-00003102722201179808876:1:4485.00
-00003102722201179817719:1:3555.00
-00003102722203019000192:1:5180.00
-00003102722201179809452:1:9520.00
-00003102722201179807969:1:373.00
-00003102722201179807969:1:134.00
-00003102722201179808807:1:20000.00
-00003102722201179806800:1:4662.00
-00003102722201179807969:1:199.00
-00005002681889125066:2:1010.00
-00003102722203019000192:1:2850.00
-00003102722201179804719:1:999.00
-00003102722201179801650:1:1000.00
-00003102722201179807969:1:296.00
-00003102722201179803901:1:6420.00
-00003102722201179806932:1:9060.00
-00005002681889123901:2:1340.00
-00003102722201179807969:1:506.00
-00003102722203019000192:1:7800.00
-00003102722201179801650:1:770.00
-00003102722201179803733:1:974.00
-00003102722201179807969:1:585.00
-00003102722203019000192:1:980.00
-00003102722201179801112:1:2176.00
-00003102722201179818670:1:410.00
-00003102722201179803160:1:14950.00
-00003102722203019000192:1:1200.00
-00003102722201179801165:1:3818.00
-00003102722201179804719:1:198.00
-00003102722201179800462:1:400.00
-00003102722201179808176:1:5000.00
-00003102722201179800462:1:800.00
-00003102722201179808876:1:7056.00
-00003102722201179803635:1:980.00
-00003102722201179800462:1:880.00
-00003102722201179801753:1:13000.00
-00003102722201179804719:1:506.00
-00003102722201179804242:1:877.00
-00003102722201179800462:1:1000.00
-00003102722201179806883:1:1032.00
-00003102722201179800462:1:1000.00
-00003202C16289132841:2:1000.00
-00003102722201179800462:1:1000.00
-00003102722201179807903:1:2388.00
-00003102722201179804242:1:914.00
-00003102722203019000652:1:10800.00
-00003102722201179807096:1:25000.00
-00003102722201179804242:1:14400.00
-00003102722203019000652:1:1380.00
-00003102722201179806509:1:1005.00
-00003102722201179809452:1:2100.00
-00003102722201179812458:1:914.00
-00003102722201179803775:1:1000.00
-00003102722201179812458:1:934.00
-00003102722201179812458:1:944.00
-00003102722201179801152:1:39000.00
-00003102722201179803775:1:1000.00
-00003102722201179801668:1:860.00
-00003102722201179803775:1:1000.00
-00003102722201179801668:1:1770.00
-00003102722201179803775:1:1000.00
-00003102722201179812458:1:484.00
-00003102722201179812123:1:990.00
-00003102722201179803444:1:3589.00
-00005002681889120888:2:11678.00
-00003102722201179814453:1:9720.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179812132:1:964.00
-00003102722201179818626:1:441.00
-00003102722201179803775:1:1000.00
-00003102722201179808135:1:9658.00
-00003102722201179803775:1:1000.00
-00003102722201179809024:1:8585.88
-00003102722201179803775:1:1000.00
-00003102722201179808135:1:8658.00
-00003102722201179812552:1:997.00
-00003102722201179803444:1:2588.00
-00003102722201179803635:1:998.00
-00003102722201179803775:1:1000.00
-00003102722201179808176:1:4998.00
-00003102722201179806885:1:1000.00
-00003102722201179803444:1:2688.00
-00003102722201179802411:1:1588.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179802411:1:4698.00
-00003102722201179803775:1:1000.00
-00003102722201179803905:1:9626.00
-00003102722201179803775:1:1000.00
-00003102722201179800420:1:10000.00
-00003102722201179818987:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179807684:1:1000.00
-00003102722201179808876:1:5105.00
-00003102722201179802411:1:4890.00
-00003102722201179803775:1:1000.00
-00003102722201179811173:1:5600.00
-00003102722201179808876:1:6123.00
-00003102722203019004136:1:1001.00
-00003102722201179807691:1:995.00
-00003102722201179803454:1:2963.96
-00003102722201179809452:1:10000.00
-00005002681889125066:2:678.00
-00003102722201179808876:1:1535.00
-00003102722201179808876:1:1437.00
-00003102722201179808403:1:1000.00
-00003102722201179803980:1:9500.00
-00003102722201179807909:1:5237.00
-00003102722201179803775:1:1000.00
-00003102722201179807901:1:3409.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179813999:1:2378.00
-00003102722201179803775:1:1000.00
-00005002681889119905:2:1000.00
-00003102722201179803980:1:3600.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179811117:1:20123.00
-00003102722201179803775:1:1000.00
-00003102722203019002801:1:1000.00
-00003102722201179807408:1:11900.00
-00003102722203019000836:1:299.00
-00003102722203019000881:1:1395.00
-00003102722203019000836:1:1930.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803551:1:2885.00
-00003102722201179807684:1:1000.00
-00003102722201179803794:1:999.50
-00003102722201179803775:1:1000.00
-00003102722201179805928:1:4788.00
-00003102722201179803775:1:1000.00
-00003102722201179803794:1:998.00
-00003102722201179803551:1:2615.00
-00003102722201179806326:1:867.00
-00003102722203019000392:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179812388:1:2400.00
-00003102722203019000325:1:1550.05
-00003102722201179803794:1:999.00
-00003102722201179806326:1:3617.00
-00003102722201179803775:1:1000.00
-00003102722201179803794:1:996.00
-00003102722201179803775:1:1000.00
-00003102722203019003855:1:1000.00
-00003102722201179807433:1:855.00
-00003102722201179803775:1:1000.00
-00003102722201179801112:1:10200.00
-00003102722201179807433:1:964.00
-00003102722201179803775:1:1000.00
-00003102722201179808160:1:1302.00
-00003102722201179809471:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179811103:1:4560.00
-00003102722201179803775:1:1000.00
-00003102722201179803222:1:22568.00
-00003102722203019003855:1:1600.00
-00003102722203019000392:1:15500.00
-00003102722201179803775:1:1000.00
-00003102722201179811103:1:7580.00
-00003102722203019000836:1:980.00
-00003102722203019000723:1:6690.00
-00003102722201179803998:1:23200.00
-00003102722201179801734:1:3780.00
-00003102722201179811832:1:1000.00
-00003102722201179808761:1:2148.00
-00003102722201179801734:1:3890.00
-00003102722201179809049:1:23212.00
-00003102722201179811133:1:18000.00
-00003102722203019000797:1:983.00
-00003102722201179809455:1:674.00
-00003102722203019000797:1:987.00
-00003102722201179809049:1:7108.00
-00003102722201179803986:1:945.00
-00003102722201179805044:1:2443.00
-00003102722201179814230:1:14500.00
-00003102722201179801791:1:8100.00
-00003102722201179814233:1:6000.00
-00003102722201179805044:1:1051.00
-00003102722201179806580:1:1228.00
-00003102722201179807265:1:1000.00
-00003102722201179809049:1:26190.00
-00003102722201179814233:1:6000.00
-00003102722201179814230:1:2000.00
-00003102722201179814230:1:4500.00
-00003102722203019003975:1:450.00
-00003102722201179803611:1:622.00
-00003102722201179809471:1:15.00
-00003102722201179814233:1:6100.00
-00003102722201179802344:1:3968.00
-00003102722201179808767:1:1000.00
-00003102722201179803611:1:895.00
-00003102722203019003975:1:450.00
-00003102722201179803611:1:891.00
-00003102722201179803611:1:891.00
-00003102722201179800790:1:2358.00
-00003102722201179817451:1:987.00
-00003102722203019003975:1:450.00
-00003102722201179814233:1:6000.00
-00003102722201179803733:1:899.00
-00003102722201179800420:1:3055.00
-00003102722201179800790:1:2843.00
-00003102722203019003975:1:100.00
-00003102722201179808401:1:795.00
-00003102722201179808601:1:1025.00
-00003102722203019000799:1:1682.00
-00003102722201179800790:1:2348.00
-00003102722203019004096:1:5850.00
-00003102722201179803568:1:1725.00
-00003102722201179809196:1:922.00
-00003102722203019000104:1:5698.00
-00005002681889123762:2:1202.21
-00003102722201179809049:1:10933.00
-00003102722201179809452:1:890.00
-00003102722201179808995:1:1043.00
-00003102722201179811162:1:1100.00
-00003102722201179803760:1:995.00
-00003102722201179808042:1:2000.00
-00003102722201179802627:1:2040.00
-00003102722201179808820:1:13958.00
-00003102722201179802627:1:8268.00
-00003102722201179802739:1:7008.50
-00003102722201179806256:1:997.00
-00003102722203019000789:1:4822.00
-00003102722201179808034:1:5088.00
-00003102722201179808764:1:35500.00
-00003102722203019000881:1:4915.00
-00003102722201179812211:1:1000.00
-00003102722201179818626:1:401.00
-00003102722201179812251:1:13300.00
-00003102722201179812211:1:1000.00
-00003102722201179806928:1:1000.00
-00003102722201179802766:1:1273.00
-00003102722201179805192:1:980.00
-00003102722201179801843:1:2840.00
-00003102722201179808603:1:1133.00
-00003102722201179811416:1:1006.00
-00003102722203019003888:1:20580.00
-00003102722201179805192:1:950.00
-00003102722201179804282:1:1200.00
-00003102722201179803285:1:1998.00
-00003102722201179801843:1:1254.00
-00003102722201179807425:1:8933.00
-00003102722201179811031:1:7860.00
-00003102722201179808935:1:2450.00
-00003102722201179809478:1:978.00
-00003102722201179808856:1:1000.00
-00003102722201179809478:1:989.00
-00003102722201179805444:1:997.00
-00003102722201179808761:1:2465.50
-00003102722201179806189:1:35500.00
-00003102722201179818642:1:955.00
-00003102722201179809105:1:3570.00
-00003102722201179808991:1:3424.00
-00003102722201179814223:1:1000.00
-00003102722203019003862:1:4875.00
-00003102722201179803905:1:4458.00
-00003102722201179814482:1:10700.00
-00003102722201179802797:1:9700.00
-00003102722201179803420:1:2780.00
-00003102722201179803905:1:1032.00
-00003102722201179801314:1:299.00
-00003102722201179809452:1:5680.00
-00003102722201179815557:1:1000.00
-00003102722201179806765:1:9180.00
-00003102722201179808160:1:1240.00
-00003102722201179802797:1:10200.00
-00003102722201179801687:1:1000.00
-00003102722201179811173:1:6211.00
-00003102722201179803905:1:4006.00
-00003102722201179810225:1:1000.00
-00003102722201179801314:1:5971.00
-00003102722201179806928:1:100.00
-00003102722201179809499:1:835.00
-00003102722201179806874:1:3520.00
-00003102722201179809499:1:835.00
-00003102722201179803020:1:1653.00
-00003102722201179801155:1:25560.00
-00003102722201179809499:1:532.00
-00003102722201179808427:1:2270.00
-00003102722201179809455:1:683.00
-00003102722201179810225:1:998.00
-00003102722201179808427:1:1358.00
-00003102722201179802689:1:5230.00
-00003102722201179809499:1:532.00
-00003102722201179803733:1:798.00
-00003102722201179808427:1:2295.00
-00003102722201179813461:1:1852.00
-00003102722201179808427:1:1056.00
-00003102722201179808427:1:1085.00
-00003102722201179813461:1:2358.00
-00003102722201179809472:1:299.00
-00003102722201179808427:1:1047.00
-00003102722201179802196:1:4967.00
-00003102722201179808427:1:1053.00
-00003102722201179801081:1:1000.00
-00003102722201179801687:1:5000.00
-00003102722203019000793:1:1000.00
-00003102722201179809452:1:840.00
-00003102722201179806240:1:1000.00
-00003102722201179801703:1:25425.00
-00003102722201179806792:1:1000.00
-00003102722201179812573:1:4208.00
-00003102722201179808161:1:6997.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179809452:1:1560.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179813199:1:930.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179800634:1:4330.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803436:1:1000.00
-00003102722201179804579:1:5555.00
-00003102722201179804768:1:2566.00
-00003102722201179802694:1:4585.00
-00003102722201179815782:1:855.00
-00003102722201179806711:1:6317.00
-00003102722201179811408:1:5201.00
-00003102722201179801315:1:11800.00
-00003102722201179815782:1:965.00
-00003102722201179802694:1:4152.00
-00005002681889120888:2:6185.00
-00003102722201179815782:1:795.00
-00003102722201179800456:1:437.00
-00003102722201179806979:1:532.00
-00003102722201179805976:1:7586.00
-00005002681889120888:2:3185.00
-00003102722201179808768:1:3100.00
-00003102722201179807415:1:1000.00
-00003102722201179808646:1:965.00
-00003102722201179801315:1:13400.00
-00003102722203019000799:1:1682.00
-00003102722203019000848:1:1000.00
-00003102722201179810999:1:907.00
-00003102722201179801584:1:365.00
-00003102722201179811408:1:6011.00
-00003102722201179800456:1:1000.00
-00003102722201179813184:1:2236.00
-00003102722201179803668:1:2691.00
-00003102722201179807498:1:2000.00
-00003102722201179811313:1:1642.00
-00003102722201179803409:1:959.00
-00003102722201179811313:1:955.00
-00005002681889119907:2:1000.00
-00003102722201179803409:1:982.00
-00003102722201179811408:1:4513.00
-00003102722201179811313:1:525.00
-00003102722201179803409:1:982.00
-00003102722201179801584:1:156.00
-00003102722201179803409:1:709.00
-00003102722201179811313:1:655.00
-00003102722201179803409:1:982.00
-00003102722201179803409:1:1109.00
-00003102722201179803111:1:9761.00
-00003102722201179818972:1:3320.00
-00003102722201179803409:1:1909.00
-00003102722201179818648:1:999.00
-00003102722201179803409:1:1909.00
-00003102722201179811408:1:6023.00
-00003102722201179801584:1:1520.00
-00003102722201179809452:1:5280.00
-00003102722201179803409:1:1909.00
-00003102722201179808172:1:5768.00
-00003102722201179800689:1:7360.00
-00003102722201179809455:1:677.00
-00003102722201179808980:1:2960.00
-00003102722201179808161:1:7501.00
-00003102722201179800689:1:7360.00
-00003102722201179818654:1:852.00
-00003102722201179818648:1:1000.00
-00003102722201179800689:1:5642.00
-00003102722201179806800:1:4624.00
-00003102722201179818654:1:852.00
-00003102722201179811032:1:14500.00
-00003102722201179803410:1:2676.00
-00003102722201179818654:1:852.00
-00003102722201179818648:1:2498.00
-00003102722201179803410:1:7120.00
-00003102722201179803042:1:84.00
-00003102722201179808053:1:2941.00
-00003102722201179810228:1:1020.00
-00003202C16289130796:2:1000.00
-00003102722201179818648:1:2499.00
-00003102722201179808053:1:2970.00
-00003102722201179803921:1:1010.00
-00003102722201179806762:1:4892.00
-00005002681889119907:2:1150.00
-00003102722201179818654:1:852.00
-00003102722201179809452:1:2450.00
-00003102722201179801643:1:1000.00
-00003102722201179803109:1:1000.00
-00003102722201179814238:1:11123.00
-00003102722201179812131:1:973.00
-00003102722201179803754:1:1000.00
-00003102722201179801500:1:50300.00
-00003102722201179808131:1:8069.00
-00003102722201179802193:1:928.00
-00003102722201179802193:1:994.00
-00003102722201179804756:1:600.00
-00003102722201179805983:1:1265.00
-00003102722201179803986:1:989.00
-00003102722201179801628:1:30000.00
-00005002681889123760:2:2560.00
-00003102722201179805983:1:868.00
-00003102722203019002547:1:1000.00
-00003102722201179802187:1:11781.00
-00005002681889117301:2:1000.00
-00003102722201179801116:1:3700.00
-00003102722201179803112:1:1000.00
-00003102722201179813102:1:209.00
-00003102722201179801648:1:1000.00
-00003102722201179808444:1:10444.00
-00003102722201179814513:1:12073.00
-00003102722201179808444:1:10400.00
-00003102722201179806261:1:713.00
-00003102722201179817710:1:1570.00
-00003102722201179808444:1:16680.00
-00003102722203019003888:1:19560.00
-00003102722201179804090:1:2000.00
-00003102722201179811317:1:1355.00
-00003102722201179808497:1:1050.00
-00003102722201179806711:1:973.00
-00003102722201179807969:1:1950.00
-00003102722201179804090:1:3012.00
-00003102722201179803568:1:1798.00
-00003102722201179801673:1:1000.00
-00003102722201179806261:1:561.00
-00003102722201179803063:1:10.00
-00003102722203019003888:1:6860.00
-00003102722201179808113:1:10396.00
-00003102722201179817710:1:12880.00
-00003102722201179806261:1:206.00
-00003102722203019000846:1:1000.00
-00003102722201179809101:1:3957.00
-00003102722201179807969:1:670.00
-00003102722201179808980:1:2080.00
-00003102722201179808137:1:900.00
-00003102722201179807969:1:178.00
-00005002681889124044:2:1022.22
-00003102722201179807969:1:423.00
-00005002681889123770:2:1000.00
-00003102722201179807903:1:4200.00
-00003102722201179808761:1:1368.00
-00003102722201179806901:1:30950.00
-00003102722201179807969:1:270.00
-00003102722201179803063:1:1000.00
-00003102722201179807969:1:460.00
-00003102722201179813830:1:2008.58
-00003102722201179804090:1:3658.00
-00003102722201179803063:1:900.00
-00003102722201179809128:1:872.00
-00005002681889120302:2:1000.00
-00003102722201179806901:1:25000.00
-00003102722201179818621:1:299.00
-00003102722201179803940:1:18480.00
-00003102722201179817409:1:1050.00
-00003102722201179808778:1:5000.00
-00003102722201179809075:1:496.00
-00003102722201179804877:1:5986.00
-00003102722201179818626:1:401.00
-00003102722201179802048:1:4020.00
-00003102722201179801172:1:2500.00
-00003102722201179804877:1:3986.00
-00003102722201179803020:1:1376.00
-00003102722201179814453:1:4800.00
-00005002681889123715:2:1280.00
-00003102722201179802413:1:7200.00
-00003102722201179808489:1:3091.00
-00003102722201179815580:1:965.00
-00003102722201179805932:1:3050.00
-00003102722201179813830:1:9863.58
-00003102722201179814242:1:979.00
-00003102722201179806702:1:2436.00
-00003102722201179802413:1:5400.00
-00003102722201179808939:1:543.00
-00003102722201179810213:1:1000.00
-00003102722201179802413:1:4500.00
-00005002681889123930:2:1000.00
-00003102722201179805932:1:4250.00
-00003102722201179808431:1:1000.00
-00003102722201179808040:1:3900.00
-00003102722201179808040:1:5400.00
-00003102722201179818989:1:13680.00
-00003102722201179801633:1:4850.00
-00003102722201179807265:1:4170.00
-00005002681889125005:2:1100.00
-00003102722201179809452:1:2450.00
-00003102722201179807265:1:1520.00
-00003102722201179800462:1:9999.99
-00003102722201179812790:1:1000.00
-00003102722201179811843:1:983.00
-00003102722201179818621:1:701.00
-00003102722201179803980:1:5700.00
-00003102722201179811843:1:983.00
-00005002681889124080:2:15250.00
-00003102722201179813999:1:1813.00
-00003102722201179802343:1:13000.00
-00003102722201179808403:1:5217.00
-00003102722201179811494:1:3200.00
-00003102722201179811510:1:1000.00
-00003102722201179803986:1:895.00
-00003102722201179803760:1:1000.00
-00003102722201179803405:1:1976.00
-00003102722201179815782:1:1305.00
-00003102722201179818621:1:15000.00
-00003102722201179807263:1:2513.00
-00003102722201179815782:1:1405.00
-00005002681889123905:2:1020.00
-00003102722201179811510:1:36000.00
-00003102722201179815782:1:2075.00
-00003102722201179812790:1:24370.00
-00003102722201179806899:1:1000.00
-00003102722201179807433:1:3570.00
-00003102722201179803454:1:2963.56
-00003102722201179814453:1:5100.00
-00003102722201179807433:1:957.00
-00003102722201179809455:1:667.00
-00003102722201179808641:1:996.00
-00003102722201179809105:1:2437.00
-00003102722201179811510:1:1000.00
-00003102722201179800486:1:983.00
-00003102722201179807477:1:4213.00
-00003102722201179803042:1:410.00
-00003102722201179803602:1:3208.00
-00003102722201179806272:1:1006.00
-00003102722201179812132:1:653.00
-00003102722201179812123:1:808.00
-00003102722201179809422:1:25100.00
-00003102722201179812777:1:1000.00
-00003102722201179801311:1:15.00
-00003102722201179803733:1:943.00
-00003102722201179808440:1:11085.00
-00003102722201179807682:1:799.00
-00003102722201179800425:1:11.02
-00003102722201179808939:1:769.00
-00003102722201179803611:1:951.00
-00003102722201179807682:1:799.00
-00003102722201179811274:1:1001.00
-00003102722203019000780:1:15500.00
-00003102722201179807682:1:799.00
-00003102722201179803611:1:917.00
-00003102722201179807265:1:2130.00
-00003102722201179802009:1:1000.00
-00003102722201179811310:1:1130.00
-00003102722201179806703:1:1000.00
-00003102722203019000799:1:1583.00
-00003102722201179807429:1:2315.00
-00003102722201179810997:1:18500.00
-00003102722201179806983:1:755.00
-00003102722201179800425:1:1023.00
-00003102722201179806983:1:531.00
-00003102722201179805427:1:49010.00
-00003102722201179807429:1:995.00
-00003102722203019000776:1:3899.00
-00003102722201179807000:1:1345.00
-00003102722201179807000:1:2365.00
-00003102722201179803905:1:9504.00
-00003102722201179803444:1:3066.00
-00003102722201179804756:1:2428.00
-00003102722201179809145:1:3728.00
-00003102722201179807000:1:4563.00
-00003102722201179808253:1:2137.00
-00003102722201179803175:1:1000.00
-00003102722201179809145:1:14700.00
-00003102722201179808253:1:2511.00
-00003102722201179808476:1:4361.00
-00003102722201179808592:1:4279.00
-00003102722201179806576:1:1000.00
-00003102722201179809145:1:8340.00
-00003102722201179805928:1:4523.00
-00003102722201179803551:1:3415.00
-00003102722201179803979:1:1538.00
-00003102722201179803551:1:2288.00
-00003102722201179804242:1:912.00
-00003102722201179814480:1:1800.00
-00003102722201179806274:1:1991.00
-00003102722201179808255:1:1000.00
-00005002681889119913:2:1000.00
-00003102722201179804242:1:953.00
-00003102722201179801970:1:1000.00
-00003102722201179809452:1:850.00
-00003102722201179804242:1:19720.00
-00003102722201179808641:1:999.90
-00003102722201179813930:1:2863.00
-00003102722201179803047:1:2395.00
-00003102722201179801708:1:4001.00
-00003102722201179809455:1:671.00
-00003102722201179803795:1:3091.00
-00003102722201179803047:1:2395.00
-00003102722201179802038:1:4603.00
-00003102722201179812451:1:4325.00
-00003102722201179806703:1:3217.00
-00003102722203019003873:1:199.00
-00003102722201179803795:1:828.00
-00003102722201179803047:1:2395.00
-00003102722201179803795:1:639.00
-00003102722201179806703:1:3217.00
-00003102722201179806967:1:10149.00
-00003102722201179803795:1:325.00
-00003102722201179803795:1:461.00
-00003102722201179806703:1:3569.00
-00003102722201179815791:1:1330.00
-00003102722201179803795:1:6031.00
-00003102722201179808641:1:964.00
-00003102722201179803795:1:130.00
-00005002681889119292:2:4580.00
-00003102722201179803795:1:109.00
-00003102722201179806776:1:32257.00
-00003102722201179803795:1:507.00
-00003102722201179817770:1:1100.00
-00003102722201179803795:1:401.00
-00003102722201179812790:1:23740.00
-00003102722203019000848:1:3500.00
-00003102722201179802878:1:8186.00
-00003102722203019000848:1:6230.00
-00003102722203019004015:1:1000.00
-00003102722201179808901:1:1126.00
-00003102722203019000848:1:6200.00
-00003102722201179803941:1:899.00
-00003102722201179808901:1:9732.00
-00003102722201179803941:1:935.00
-00005002681889123601:2:299.00
-00003102722201179801741:1:1000.00
-00003102722201179803108:1:1000.00
-00003102722201179803941:1:968.00
-00003102722201179812669:1:1000.00
-00003102722203019003982:1:19250.00
-00003102722201179808901:1:4693.00
-00003102722201179803941:1:975.00
-00003102722201179802344:1:3855.00
-00005002681889120303:2:1000.00
-00003102722201179803532:1:12324.00
-00003102722201179808472:1:438.00
-00003102722201179813199:1:720.00
-00003102722201179815553:1:1000.00
-00003102722203019000806:1:538.00
-00003102722201179806249:1:5850.00
-00005002681889123601:2:1001.00
-00003102722201179806703:1:463.00
-00003102722201179811843:1:954.00
-00003102722201179803108:1:9100.00
-00003102722201179806967:1:11998.00
-00003102722201179803668:1:2873.00
-00003102722201179804781:1:3275.00
-00005002681889123601:2:20.00
-00003102722201179801311:1:5000.00
-00003102722201179804781:1:597.00
-00003102722201179803042:1:203.00
-00003102722201179804781:1:749.00
-00003102722201179800599:1:290.00
-00003102722203019000806:1:7580.00
-00003102722201179804781:1:2937.00
-00003102722201179806967:1:351.00
-00003102722201179804877:1:4986.00
-00003102722201179804781:1:593.00
-00003102722201179804781:1:2763.00
-00003102722201179802021:1:20.00
-00003102722201179803986:1:928.00
-00003102722201179804781:1:613.00
-00003102722201179800425:1:1000.00
-00003102722203019003961:1:18600.00
-00003102722201179814488:1:9999.99
-00003102722201179804877:1:596.00
-00003102722201179803110:1:1000.00
-00003102722201179803986:1:865.00
-00003102722201179814488:1:9999.99
-00003102722201179804781:1:2863.00
-00003102722201179809145:1:11300.00
-00003102722203019003756:1:6912.00
-00003102722201179809145:1:2870.00
-00003102722201179804781:1:549.00
-00003102722203019000881:1:9415.00
-00003102722203019003756:1:3951.00
-00003102722201179809145:1:8940.00
-00003102722201179802021:1:1000.00
-00003102722201179803042:1:94.00
-00003102722201179809145:1:5100.00
-00003102722201179804442:1:8928.00
-00003102722201179803031:1:11.00
-00003102722201179804442:1:5926.00
-00003102722201179811400:1:4734.00
-00003102722201179803108:1:8635.00
-00003102722203019003756:1:3615.00
-00003102722201179808939:1:856.00
-00003102722203019003756:1:7151.00
-00005002681889125078:2:1130.00
-00003102722201179803733:1:887.00
-00003102722201179818665:1:1000.00
-00003102722201179808253:1:3655.00
-00003102722201179808256:1:1010.00
-00003102722201179809450:1:1000.00
-00003102722201179803124:1:1000.00
-00003102722201179806258:1:6550.00
-00003102722201179807477:1:4201.00
-00003102722203019000806:1:8368.00
-00003102722201179809450:1:1000.00
-00003102722201179813517:1:1052.00
-00003102722201179802776:1:15134.00
-00003102722201179803031:1:11.11
-00003102722201179811843:1:653.80
-00003102722201179807756:1:1853.00
-00003102722201179812552:1:1015.00
-00005002681889125914:2:1011.00
-00003102722201179811102:1:2025.00
-00003102722201179807483:1:1685.00
-00003102722201179803108:1:2365.00
-00003102722201179807756:1:2183.00
-00003102722201179811102:1:150.00
-00003102722203019000813:1:1170.00
-00003102722201179803998:1:26100.00
-00003102722201179803287:1:3621.00
-00003102722201179813935:1:968.00
-00003102722201179817483:1:1000.00
-00003102722201179803155:1:12740.00
-00003102722201179805092:1:100.00
-00003102722201179801311:1:25435.00
-00003102722203019002686:1:1008.00
-00003102722201179811151:1:3653.00
-00003102722203019000385:1:1058.00
-00003102722201179801667:1:1000.00
-00003102722201179803151:1:528.00
-00003102722201179803607:1:2000.00
-00003102722201179803155:1:16430.00
-00003102722201179815559:1:958.00
-00003102722201179803155:1:17370.00
-00003102722201179805092:1:106.00
-00003102722201179812131:1:7700.00
-00003102722201179817483:1:5986.00
-00003102722201179809478:1:963.00
-00003102722203019000723:1:1288.00
-00003102722201179809478:1:977.00
-00003102722201179803109:1:8961.00
-00003102722201179803042:1:354.00
-00003102722201179801703:1:17264.00
-00003102722201179806727:1:3973.00
-00003102722201179811102:1:4050.00
-00003102722203019000475:1:9868.00
-00003102722203019000301:1:980.00
-00003102722201179800494:1:944.00
-00003102722201179800494:1:966.00
-00003102722201179801165:1:8365.00
-00003102722201179800494:1:972.00
-00003102722201179806210:1:1000.00
-00003102722201179803110:1:2739.00
-00005002681889120301:2:1000.00
-00003102722201179806210:1:1000.00
-00003102722201179806981:1:657.00
-00003102722201179806210:1:1000.00
-00003102722201179807158:1:1000.00
-00003102722201179817362:1:716.00
-00003102722203019004133:1:1001.00
-00003102722203019000833:1:1100.00
-00003102722201179803110:1:5600.00
-00003102722201179801843:1:3160.00
-00003102722201179806249:1:4145.00
-00003102722201179808430:1:1362.00
-00003102722201179801632:1:13500.00
-00003102722201179801843:1:1746.00
-00003102722201179808430:1:1633.00
-00003102722201179813147:1:4545.00
-00003102722201179809128:1:664.00
-00003102722201179803109:1:8685.00
-00003102722201179811151:1:69.00
-00003102722201179806410:1:1000.00
-00003102722201179809455:1:663.00
-00003102722201179803607:1:5000.00
-00003102722201179807264:1:1000.00
-00003102722201179811413:1:13625.00
-00003102722201179806580:1:1000.00
-00005002681889123756:2:1000.00
-00003102722203019000806:1:5935.00
-00003102722203019000195:1:4623.00
-00003102722203019000301:1:650.00
-00003102722203019000195:1:5328.00
-00003102722201179808585:1:985.00
-00003102722201179808498:1:18432.00
-00003102722201179806410:1:299.00
-00003102722203019004136:1:2130.00
-00003102722201179804719:1:3898.00
-00003102722201179808632:1:5097.00
-00003102722201179810201:1:1000.00
-00003102722201179809452:1:2980.00
-00003102722201179803110:1:3400.00
-00003102722203019000301:1:990.00
-00003102722203019004096:1:3850.00
-00003102722201179812554:1:18000.00
-00003102722203019004136:1:1920.00
-00003102722203019004096:1:2300.00
-00003102722201179806280:1:1000.00
-00003102722203019004096:1:3960.00
-00003102722201179809452:1:840.00
-00003102722203019004096:1:8650.00
-00003102722201179807448:1:1003.00
-00003102722203019004096:1:4350.00
-00003102722203019004096:1:3650.00
-00003102722201179803109:1:7315.00
-00003102722201179801607:1:9200.00
-00003102722203019004096:1:7830.00
-00003102722201179818908:1:10000.00
-00003102722201179803109:1:2600.00
-00003102722201179808632:1:100.63
-00003102722201179808632:1:9072.00
-00003102722203019000301:1:990.00
-00003202C16289130796:2:2598.00
-00003102722203019000301:1:980.00
-00003102722201179801607:1:4100.00
-00003102722201179811843:1:813.00
-00003202C16289130796:2:500.00
-00003102722201179806762:1:2803.00
-00003102722201179801607:1:4850.00
-00003102722201179807643:1:2880.00
-00003102722201179809460:1:2000.00
-00003102722201179801626:1:13100.00
-00003102722203019000301:1:970.00
-00003102722201179804290:1:68.00
-00003102722201179807448:1:10.08
-00003102722203019000301:1:950.00
-00003102722201179804290:1:69.00
-00003102722201179818958:1:19980.00
-00003102722201179803109:1:6400.00
-00003102722201179807448:1:983.00
-00003102722201179803223:1:10540.00
-00003102722201179811154:1:2635.00
-00003102722201179816193:1:1500.00
-00005002681889123758:2:1000.00
-00003102722201179807330:1:2976.00
-00003102722201179808939:1:943.00
-00003102722201179807330:1:2654.00
-00005002681889126015:2:1000.00
-00003102722201179805426:1:8780.00
-00003102722203019000330:1:199.00
-00003102722203019000330:1:299.00
-00003102722203019004136:1:100.00
-00003102722201179811154:1:7545.00
-00003102722201179809145:1:11000.00
-00003102722201179819003:1:997.00
-00003102722201179809145:1:10009.00
-00003102722201179809105:1:120.00
-00003102722201179809145:1:6850.00
-00003102722201179817471:1:1000.00
-00005002681889126001:2:1231.00
-00005002681889120305:2:1000.00
-00003102722201179806822:1:1785.00
-00003102722201179803760:1:994.00
-00003102722203019000385:1:3358.00
-00003102722201179814237:1:1000.00
-00003102722201179813269:1:299.00
-00003102722201179809124:1:6789.00
-00003102722201179811540:1:4990.00
-00003102722201179809471:1:23.00
-00003102722201179815722:1:5253.00
-00003102722203019000850:1:1000.00
-00003102722201179803733:1:962.00
-00003102722201179801633:1:5230.00
-00003102722201179815722:1:4213.00
-00003102722201179808592:1:3720.00
-00003102722201179804263:1:8660.00
-00003102722201179808966:1:2488.00
-00003102722201179811430:1:5299.90
-00003102722203019000330:1:3000.00
-00003102722201179808294:1:1000.00
-00003102722203019003873:1:799.00
-00003102722201179815722:1:7984.00
-00003102722201179811430:1:5299.90
-00003102722203019000850:1:9865.00
-00003102722201179803685:1:2589.00
-00003102722201179806711:1:6227.00
-00003102722201179808891:1:16800.00
-00003102722201179812285:1:2208.00
-00003102722201179803685:1:3796.00
-00003102722201179811843:1:493.00
-00003102722201179804220:1:2453.00
-00003102722201179808891:1:9800.00
-00003102722201179800634:1:5210.00
-00003102722201179808891:1:12808.00
-00003102722201179803941:1:690.00
-00003102722201179812388:1:2400.00
-00003102722201179808414:1:495.00
-00003102722201179803941:1:998.00
-00003102722201179811843:1:955.00
-00003102722201179818662:1:5833.00
-00003102722201179803222:1:24657.00
-00003102722201179808891:1:3900.00
-00003102722203019000790:1:5150.00
-00003102722201179808761:1:1796.00
-00003102722201179801607:1:9100.00
-00003102722203019000790:1:1870.00
-00003102722201179809471:1:995.00
-00003102722201179801607:1:9120.00
-00003102722201179804220:1:3180.00
-00003102722201179811961:1:11.11
-00003102722201179801740:1:9000.00
-00003102722201179801740:1:12000.00
-00003102722201179809471:1:1214.00
-00003102722201179812285:1:3456.00
-00005002681889117302:2:1520.00
-00003102722201179817897:1:1000.00
-00003102722201179812771:1:4701.00
-00003102722201179811132:1:15480.00
-00003102722201179802676:1:1246.00
-00003102722201179802344:1:2995.00
-00003102722201179802688:1:1730.00
-00003102722201179801304:1:12058.00
-00003102722201179811242:1:1001.00
-00003102722201179818842:1:1000.00
-00003102722201179811499:1:10060.00
-00003102722201179802688:1:630.00
-00003102722201179808252:1:13580.00
-00003102722201179812056:1:998.00
-00003102722201179801608:1:12377.00
-00003102722203019002601:1:700.00
-00003102722201179803031:1:999.10
-00003102722201179809452:1:2250.00
-00003102722201179811271:1:1009.00
-00003102722203019002601:1:300.00
-00003102722201179814202:1:2855.63
-00003102722201179812388:1:2400.00
-00003102722201179806410:1:1000.00
-00003102722201179809452:1:790.00
-00003102722203019002601:1:9980.00
-00003102722203019000324:1:1499.00
-00003102722203019002800:1:1000.00
-00003102722201179812771:1:3779.00
-00003102722203019000796:1:1475.00
-00003102722201179809468:1:135.00
-00005002681889125007:2:5064.00
-00003102722203019002547:1:1000.00
-00003102722201179806883:1:1000.00
-00003102722201179803140:1:6000.00
-00003102722203019003975:1:1043.13
-00003102722201179817497:1:1000.00
-00003102722201179803140:1:4000.00
-00003102722203019003975:1:1398.56
-00003102722201179818655:1:9000.00
-00003102722201179806910:1:1188.00
-00005002681889120305:2:99.00
-00003102722201179800486:1:938.00
-00003102722201179809093:1:5020.00
-00003102722201179809452:1:854.00
-00003102722203019003886:1:1000.00
-00003102722201179803986:1:958.00
-00003102722201179808585:1:998.50
-00003102722201179811117:1:2997.00
-00003102722201179803986:1:959.00
-00003102722201179803113:1:1100.00
-00003102722201179808561:1:850.00
-00003102722201179809455:1:662.00
-00003102722201179805434:1:915.00
-00003102722201179804203:1:18670.00
-00003102722201179805984:1:9876.00
-00003102722201179807677:1:384.00
-00003102722201179812771:1:3051.00
-00003102722203019000806:1:7235.00
-00003102722201179809124:1:3305.00
-00003102722201179806256:1:996.00
-00003102722201179817700:1:6500.00
-00003102722201179806240:1:1000.00
-00003102722201179806765:1:3570.00
-00003102722201179808761:1:1356.50
-00003102722203019003975:1:1298.41
-00003102722201179806261:1:697.00
-00003102722203019000459:1:1000.00
-00003102722201179807677:1:493.00
-00003102722201179809128:1:865.00
-00003102722203019003975:1:1398.41
-00003102722201179806268:1:3200.00
-00003102722203019000770:1:1020.00
-00003102722203019003975:1:1398.13
-00003102722203019000836:1:1176.00
-00003102722201179813179:1:2386.00
-00003102722201179800790:1:2784.00
-00003102722203019003975:1:1398.16
-00003102722203019000836:1:1270.00
-00003102722203019003975:1:1398.46
-00003102722201179800790:1:1532.00
-00003102722201179809452:1:820.00
-00003102722203019003975:1:1398.56
-00003102722201179809452:1:985.00
-00003102722203019003975:1:1398.56
-00003102722203019003975:1:1398.56
-00003102722201179802004:1:2500.00
-00003102722201179814525:1:18500.00
-00003102722201179818952:1:24730.00
-00003102722203019000833:1:805.00
-00003102722201179802004:1:1500.00
-00003102722201179803810:1:1000.00
-00003102722201179814525:1:830.00
-00003102722201179801848:1:2195.00
-00003102722203019000833:1:988.00
-00003102722203019003760:1:4856.00
-00003102722201179801848:1:1950.00
-00003102722203019003975:1:1298.56
-00003102722201179813198:1:951.00
-00003102722201179814525:1:950.00
-00003102722203019003886:1:13000.00
-00003102722203019003975:1:1299.56
-00003102722201179814525:1:760.00
-00003102722203019003975:1:1298.56
-00003102722203019003975:1:1298.56
-00003102722201179818662:1:3250.00
-00005002681889119291:2:28659.00
-00003102722201179818705:1:9186.00
-00003102722201179807677:1:397.00
-00003102722201179803017:1:9867.00
-00003102722203019003975:1:1299.58
-00003102722201179812255:1:9999.99
-00003102722201179803668:1:2012.00
-00003102722201179816183:1:1352.00
-00003102722203019003975:1:1355.17
-00003102722201179816183:1:1536.00
-00003102722201179812255:1:1999.99
-00003102722201179816183:1:2315.00
-00003102722201179803017:1:2800.00
-00003102722201179806234:1:816.00
-00003102722201179816183:1:2352.00
-00003102722201179816183:1:1523.00
-00003102722201179815791:1:3470.00
-00003102722201179816183:1:1563.00
-00003102722201179808614:1:3400.00
-00003102722201179816183:1:1563.00
-00003102722201179818670:1:370.00
-00003102722201179808215:1:5192.00
-00003102722201179812251:1:13566.00
-00005002681889119291:2:28673.00
-00003102722201179805152:1:5567.00
-00003102722201179808824:1:3255.00
-00003102722201179811381:1:3565.00
-00003102722203019000300:1:10000.00
-00003102722201179808824:1:2600.00
-00003102722203019000799:1:1463.00
-00005002681889126020:2:16080.00
-00005002681889119291:2:15258.00
-00003102722201179808824:1:2450.00
-00003102722201179807677:1:294.00
-00005002681889123715:2:550.00
-00003102722201179818670:1:320.00
-00003102722203019000301:1:998.00
-00003102722201179807684:1:6200.00
-00003102722201179802603:1:980.00
-00003102722201179813516:1:2913.00
-00003102722201179813516:1:2590.00
-00003102722201179804579:1:5789.00
-00003102722201179813516:1:1795.00
-00003102722201179803945:1:999.00
-00003102722203019000301:1:997.00
-00003102722201179818670:1:350.00
-00005002681889123916:2:1000.00
-00003102722201179801710:1:2030.00
-00005002681889123763:2:1997.00
-00003102722201179806326:1:3417.00
-00003102722201179806326:1:2768.00
-00003102722203019000301:1:976.00
-00003102722201179809471:1:998.00
-00003102722201179800486:1:952.00
-00005002681889120310:2:1000.00
-00003102722201179812071:1:999.00
-00003102722201179808761:1:637.00
-00003102722203019000120:1:991.00
-00005002681889123763:2:200.00
-00003102722203019000301:1:968.00
-00003102722201179804781:1:15540.00
-00003102722201179812071:1:998.00
-00003102722203019000120:1:989.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:999.00
-00003102722201179817865:1:999.00
-00003102722203019000120:1:997.00
-00003102722201179805434:1:867.00
-00003102722201179816800:1:389.00
-00003102722201179813147:1:3245.00
-00003102722203019000120:1:996.00
-00003102722203019000120:1:994.00
-00003102722201179817729:1:35500.00
-00003102722203019001100:1:1000.00
-00003102722203019000120:1:993.00
-00003102722201179811275:1:2032.00
-00003102722201179808422:1:2000.00
-00003102722201179810994:1:25108.80
-00003102722201179803185:1:707.00
-00003102722201179809124:1:10677.00
-00003102722201179808561:1:900.00
-00003102722201179814230:1:20200.00
-00005002681889123763:2:998.00
-00003102722201179806256:1:282.00
-00005002681889119901:2:2180.00
-00003102722201179803757:1:3795.00
-00003102722201179808422:1:200.00
-00003102722201179818705:1:6952.00
-00003102722201179816177:1:600.00
-00003102722201179803986:1:974.00
-00003102722201179811222:1:2680.00
-00003102722201179807447:1:7237.00
-00003102722201179816177:1:4690.00
-00003102722201179808414:1:456.00
-00003102722201179806282:1:1000.00
-00003102722203019000195:1:2691.00
-00003102722201179805010:1:6850.00
-00003102722201179806261:1:675.00
-00003102722201179802411:1:4799.00
-00003102722201179800486:1:937.00
-00003102722201179805010:1:6580.00
-00003102722201179802411:1:1780.00
-00003102722201179807682:1:1000.00
-00003102722201179807433:1:884.00
-00003102722201179809452:1:7100.00
-00003102722201179807447:1:12.00
-00003102722201179816177:1:2580.00
-00003102722201179807682:1:1000.00
-00003102722201179808561:1:999.00
-00003102722201179809452:1:850.00
-00003102722201179803464:1:4520.00
-00003102722201179807682:1:1000.00
-00003102722201179807447:1:12.00
-00003102722201179808339:1:300.00
-00003102722201179817709:1:1000.00
-00003102722201179817709:1:1000.00
-00003102722201179817709:1:1000.00
-00003102722201179804433:1:1550.00
-00003102722201179806261:1:691.00
-00003102722201179805159:1:1000.00
-00003102722203019000455:1:14998.00
-00003102722201179803409:1:722.00
-00003102722201179803409:1:672.00
-00003102722201179803409:1:652.00
-00003102722201179803409:1:2827.00
-00003102722201179803409:1:652.00
-00003102722203019002685:1:1000.00
-00003102722201179812549:1:799.00
-00003102722201179803409:1:652.00
-00003102722201179803409:1:652.00
-00003102722201179812790:1:29430.00
-00003102722201179803409:1:652.00
-00003102722201179809471:1:1157.00
-00003102722203019003931:1:1200.00
-00003102722201179803409:1:1827.00
-00003102722201179808906:1:7195.00
-00003102722201179806261:1:703.00
-00003102722201179812790:1:15460.00
-00003102722203019000799:1:2849.00
-00003102722201179803760:1:988.00
-00003102722201179808641:1:986.60
-00003102722201179803760:1:944.00
-00003102722201179803868:1:1000.00
-00003102722201179804433:1:1555.00
-00003102722201179811117:1:8993.00
-00003102722203019003931:1:10000.00
-00003102722201179811299:1:1000.00
-00003102722201179808641:1:999.80
-00003102722201179805434:1:156.00
-00003102722201179814524:1:1700.00
-00003202C16289149900:2:5102.00
-00003102722201179807468:1:2000.00
-00003102722201179803611:1:785.00
-00003102722201179805983:1:1866.00
-00003102722201179803611:1:795.00
-00003102722201179808407:1:1000.00
-00003102722201179818706:1:1000.00
-00003102722201179806254:1:997.96
-00003102722201179805154:1:7100.00
-00003102722201179805152:1:2140.00
-00003102722201179808946:1:4774.50
-00003102722201179818669:1:1000.00
-00003102722201179805154:1:9300.00
-00003102722201179802681:1:2855.00
-00003102722201179803868:1:1000.00
-00003102722201179809452:1:7470.00
-00003102722201179818669:1:400.00
-00003102722201179804433:1:1960.00
-00003102722201179803905:1:12000.00
-00003102722201179804440:1:3927.00
-00003102722201179809124:1:10150.00
-00003102722201179811133:1:18900.00
-00003102722201179806247:1:100.00
-00003102722201179807643:1:3180.00
-00003102722201179807945:1:26000.80
-00003102722201179806247:1:9902.00
-00003102722201179808069:1:2350.00
-00003102722201179803868:1:6000.00
-00003102722201179813830:1:4503.69
-00003102722201179808069:1:1756.00
-00003102722201179808561:1:999.00
-00003102722201179809499:1:63670.00
-00005002681889125915:2:1000.00
-00003102722201179814453:1:11980.00
-00003102722201179807092:1:1000.00
-00003102722201179803868:1:1000.00
-00003102722201179808723:1:836.00
-00003102722201179808592:1:4350.00
-00003102722201179806210:1:1000.00
-00003102722201179818669:1:200.00
-00003102722201179803986:1:938.00
-00003102722201179806210:1:1000.00
-00003102722201179802331:1:3004.00
-00003102722203019003888:1:27850.00
-00005002681889123730:2:1000.00
-00003102722203019002601:1:9886.00
-00003102722201179807904:1:6750.00
-00003102722201179802892:1:5550.00
-00003102722201179808802:1:6002.00
-00003102722201179803905:1:8085.00
-00003102722201179808215:1:3902.00
-00005002681889125071:2:1001.00
-00003102722203019000104:1:3249.00
-00003102722203019003992:1:1000.00
-00003102722201179805434:1:579.00
-00003102722201179809124:1:10207.00
-00003102722201179804433:1:1910.00
-00003102722201179806932:1:19979.00
-00003102722201179807425:1:10113.00
-00003102722201179809478:1:878.00
-00003102722201179808802:1:7528.00
-00003102722203019002601:1:13000.00
-00003102722201179806800:1:4610.00
-00003102722201179807433:1:2840.00
-00003102722201179807433:1:2940.00
-00003102722203019000758:1:5216.00
-00003102722201179806254:1:999.84
-00003102722201179806254:1:987.88
-00003102722201179802166:1:950.00
-00003102722201179806254:1:986.85
-00003102722201179818689:1:1000.00
-00003102722201179803107:1:1001.00
-00003102722201179806775:1:2385.00
-00003102722201179806466:1:999.00
-00003102722201179818689:1:10000.00
-00003102722201179806466:1:998.00
-00003102722201179806466:1:997.00
-00003102722201179806775:1:1760.00
-00003102722201179806466:1:999.00
-00003102722201179816611:1:963.00
-00003102722201179806466:1:998.00
-00003102722201179804781:1:1349.00
-00003102722201179808001:1:1000.00
-00003102722201179816611:1:987.00
-00003102722201179806487:1:5038.00
-00003102722201179806248:1:3000.00
-00003102722201179808863:1:11200.00
-00003102722201179802193:1:973.00
-00003102722201179804781:1:863.00
-00003102722201179808001:1:1000.00
-00003102722201179802193:1:994.00
-00003102722201179806989:1:688.00
-00003102722201179804781:1:593.00
-00003102722203019003888:1:10258.00
-00003102722201179808247:1:3524.00
-00003102722201179803929:1:1000.00
-00003102722201179803668:1:2653.00
-00003102722201179817421:1:100.00
-00003102722201179808247:1:1682.00
-00003102722201179809455:1:653.00
-00003102722203019003991:1:5089.00
-00003102722201179808028:1:6380.00
-00003102722201179801754:1:2500.00
-00003102722201179801754:1:6300.00
-00003102722201179806256:1:999.00
-00003102722201179811860:1:1000.00
-00003102722203019003753:1:3443.90
-00003102722201179803123:1:1000.00
-00005002681889123764:2:1000.00
-00003102722201179801116:1:4040.00
-00005002681889123709:2:2381.00
-00003102722201179808585:1:998.50
-00003102722201179803986:1:980.00
-00003102722203019000385:1:1823.00
-00003102722201179806711:1:5317.00
-00003102722201179808585:1:990.00
-00003102722201179801163:1:3000.00
-00003102722201179808140:1:49774.00
-00003102722201179809422:1:115.00
-00003102722201179803986:1:970.00
-00003102722201179804433:1:1915.00
-00003102722201179806979:1:1536.00
-00003102722201179801313:1:2218.00
-00003102722201179801313:1:4486.00
-00003102722201179806809:1:4801.00
-00003102722201179803983:1:980.00
-00003102722201179806258:1:3580.00
-00003102722201179803129:1:1855.00
-00003102722201179806731:1:1120.00
-00003102722201179801290:1:10.00
-00003102722201179808623:1:1000.00
-00003102722201179802027:1:5960.00
-00003102722201179803983:1:980.00
-00003102722201179806226:1:2251.00
-00003102722201179803983:1:980.00
-00003102722201179803983:1:980.00
-00003102722201179803983:1:980.00
-00003102722201179803983:1:980.00
-00003102722201179808414:1:455.00
-00003102722201179808623:1:4109.00
-00003102722201179810252:1:1000.00
-00003102722201179808172:1:3851.00
-00003102722201179813466:1:11050.00
-00003102722201179803611:1:687.00
-00003102722201179808028:1:916.00
-00003102722201179804433:1:1930.00
-00003102722201179808028:1:926.00
-00003102722201179803611:1:687.00
-00003102722201179813466:1:1000.00
-00003102722201179811142:1:2069.00
-00003102722201179819018:1:30000.00
-00003102722201179801791:1:11800.00
-00003102722203019002513:1:1000.00
-00003102722201179809185:1:21200.00
-00003102722201179813466:1:5205.00
-00003102722203019003753:1:3500.80
-00003102722201179807842:1:1000.00
-00003102722201179809185:1:17100.00
-00003102722203019003753:1:3499.60
-00003102722201179803833:1:11300.00
-00003102722201179809130:1:3367.00
-00003102722201179811340:1:1000.25
-00003102722203019003753:1:2998.00
-00003102722201179804433:1:1920.00
-00003102722201179801184:1:12800.00
-00003102722203019003753:1:3003.00
-00005002681889125007:2:3610.00
-00003102722203019003753:1:3509.00
-00005002681889125007:2:735.00
-00003102722201179810252:1:1000.00
-00003102722201179803812:1:9985.00
-00003102722203019003753:1:3590.80
-00003102722201179812073:1:1000.00
-00003102722201179810252:1:998.00
-00003102722203019003753:1:1999.60
-00003102722201179803635:1:500.00
-00003102722201179804433:1:1910.00
-00003102722201179802300:1:257.00
-00003102722201179811340:1:9001.02
-00003102722203019003753:1:3998.60
-00003102722203019003753:1:3499.80
-00003102722201179810252:1:1000.00
-00003102722203019003753:1:2499.60
-00003102722201179808821:1:590.00
-00003102722203019003753:1:2499.80
-00003102722203019003753:1:2499.60
-00003102722201179817418:1:1060.00
-00003102722201179801584:1:2118.00
-00003102722201179810252:1:1000.00
-00005002681889126999:2:1000.00
-00003102722201179817418:1:786.00
-00003102722201179809134:1:28555.00
-00003102722201179809129:1:10050.00
-00003102722201179806261:1:659.00
-00003102722203019003768:1:10.00
-00003102722203019003768:1:1018.00
-00003102722201179812556:1:1100.00
-00003102722201179812778:1:673.00
-00003102722201179812464:1:998.00
-00003102722201179811155:1:1010.00
-00003102722201179806487:1:4876.00
-00003102722201179801848:1:4180.00
-00003102722201179806256:1:976.00
-00003102722201179810252:1:1000.00
-00003102722201179817866:1:962.00
-00003102722203019000759:1:1001.15
-00003102722201179817866:1:992.00
-00003102722201179817866:1:962.00
-00003102722201179812778:1:1000.00
-00003102722201179807611:1:1400.00
-00003102722201179807611:1:1800.00
-00003102722201179817418:1:465.00
-00003102722201179801651:1:200.00
-00003102722201179807611:1:1000.00
-00003102722201179809129:1:10900.00
-00003102722201179808862:1:2350.00
-00003102722201179817418:1:170.00
-00003102722201179809134:1:3887.00
-00003102722201179810252:1:1000.00
-00003102722201179806845:1:4115.00
-00003102722201179818956:1:25000.00
-00003102722201179806845:1:7400.00
-00003102722203019000145:1:23000.00
-00003102722201179814492:1:7000.00
-00003102722201179806312:1:1000.00
-00003102722201179813328:1:980.00
-00003102722201179808576:1:417.00
-00003102722201179813328:1:5000.00
-00003102722201179813328:1:5500.00
-00003102722201179813328:1:5500.00
-00003102722203019003751:1:5471.00
-00003102722201179813328:1:5850.00
-00003102722203019003751:1:3187.00
-00003102722203019003751:1:3671.00
-00003102722201179806312:1:1000.00
-00003102722201179806312:1:1000.00
-00003102722201179813365:1:10096.00
-00003102722201179806312:1:1000.00
-00003102722201179806312:1:1000.00
-00003102722201179807488:1:4859.00
-00003102722201179809455:1:653.00
-00003102722201179808952:1:8851.00
-00003102722201179806885:1:120.00
-00003102722201179804719:1:3806.00
-00003102722201179812160:1:7500.00
-00003102722201179804709:1:199.00
-00003102722201179801116:1:4015.00
-00003102722201179807423:1:9108.88
-00003102722201179813184:1:2910.00
-00003102722201179806258:1:4400.00
-00003102722201179808641:1:10.00
-00003102722201179808641:1:998.80
-00003102722201179808641:1:999.80
-00003102722201179808641:1:999.80
-00003102722201179803986:1:987.00
-00003102722201179805154:1:3100.00
-00003102722201179801375:1:1000.00
-00003102722201179806732:1:1560.00
-00003102722201179811319:1:5680.00
-00003102722203019000324:1:1499.99
-00003102722201179815568:1:285.00
-00003102722201179804433:1:1850.00
-00003102722201179809455:1:651.00
-00003102722201179815568:1:200.00
-00003102722201179808561:1:800.00
-00003102722201179808561:1:760.00
-00003102722201179817451:1:987.00
-00003102722201179807477:1:4159.00
-00003102722201179817451:1:986.00
-00003102722201179806731:1:21900.00
-00003102722201179812211:1:1000.00
-00003102722201179812211:1:530.00
-00003102722201179812335:1:3000.00
-00003102722201179808291:1:1000.00
-00003102722201179808422:1:933.00
-00003102722201179801740:1:19800.00
-00003102722201179806731:1:15900.00
-00003102722201179807902:1:15900.00
-00003102722201179803733:1:784.00
-00003102722201179812388:1:2100.00
-00003102722201179807450:1:4215.00
-00003102722201179803668:1:1194.00
-00003102722201179802199:1:1000.00
-00003102722201179806270:1:3758.00
-00003102722201179807330:1:4471.00
-00003102722201179813974:1:1956.00
-00003102722201179801734:1:1500.00
-00003102722201179803986:1:936.00
-00003102722201179808338:1:6568.00
-00003102722201179807902:1:10420.00
-00003102722201179808338:1:5888.00
-00003102722201179807902:1:13220.00
-00003102722201179803409:1:163.00
-00003102722201179805413:1:1000.00
-00003102722201179803409:1:163.00
-00003102722201179802892:1:4380.00
-00003102722201179803409:1:163.00
-00003102722201179803409:1:163.00
-00003102722201179803409:1:163.00
-00003202C16289149999:2:200.00
-00003102722201179803409:1:163.00
-00003102722201179803409:1:163.00
-00003102722201179803409:1:163.00
-00003102722201179808402:1:1000.00
-00003102722201179803409:1:163.00
-00003102722201179802199:1:3990.00
-00003102722201179807415:1:29513.00
-00003102722201179808402:1:1000.00
-00003102722201179803152:1:996.00
-00003102722201179808920:1:7521.00
-00003102722201179808402:1:1000.00
-00003102722201179808476:1:3243.00
-00003102722201179806234:1:962.00
-00003102722201179810225:1:989.00
-00003102722201179803775:1:1000.00
-00003102722201179805444:1:995.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179801658:1:100.00
-00003102722201179807902:1:9200.00
-00003102722201179810225:1:974.00
-00003102722201179801658:1:128.00
-00003102722201179807902:1:9840.00
-00003102722201179803775:1:1000.00
-00003102722201179815580:1:985.00
-00003102722201179807902:1:14000.00
-00003102722201179805427:1:3780.00
-00003102722201179803775:1:1000.00
-00003102722201179801679:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179801381:1:4999.00
-00003102722203019003869:1:1341.00
-00003102722201179802693:1:20560.00
-00003102722201179803775:1:1000.00
-00003102722203019004021:1:1000.00
-00003102722203019001100:1:9998.00
-00003102722203019003869:1:1245.00
-00003102722201179803908:1:9586.50
-00003102722201179808561:1:800.00
-00003102722201179803454:1:2352.64
-00003102722201179812388:1:2400.00
-00003102722201179801116:1:3980.00
-00003102722201179805131:1:9650.00
-00003102722201179805131:1:9480.00
-00003102722201179805131:1:9987.00
-00003102722201179815724:1:3568.93
-00003102722201179813516:1:675.00
-00003102722201179803935:1:6298.00
-00003102722201179812103:1:4000.00
-00003102722201179806800:1:4369.00
-00003102722201179806243:1:1257.00
-00003102722201179809455:1:597.00
-00003102722203019002547:1:1000.00
-00003102722201179806243:1:3567.00
-00003102722201179805055:1:19200.00
-00003102722201179806465:1:24000.00
-00003102722201179805055:1:12470.00
-00003102722201179803986:1:938.00
-00003102722201179801650:1:10500.00
-00003102722201179806331:1:1998.00
-00003102722201179802344:1:2688.00
-00003202C16289149999:2:300.00
-00003102722201179806240:1:1000.00
-00005002681889118560:2:10.00
-00003102722201179804241:1:16060.00
-00003102722201179813218:1:3102.00
-00005002681889125007:2:4188.00
-00005002681889118560:2:1000.00
-00003102722201179812388:1:2300.00
-00003102722201179807477:1:4149.00
-00005002681889125007:2:1288.00
-00003102722201179805192:1:960.00
-00003102722201179808078:1:5763.00
-00003102722201179809145:1:25268.00
-00003102722201179803962:1:996.00
-00003102722201179804877:1:1937.00
-00003102722201179813164:1:765.00
-00003102722203019003991:1:5026.00
-00003102722201179806253:1:1000.00
-00003102722201179812552:1:910.00
-00003102722203019003991:1:927.00
-00003102722201179806331:1:1999.00
-00003102722201179803935:1:6998.00
-00003102722203019003991:1:937.00
-00003102722201179809478:1:978.00
-00003102722201179809478:1:989.00
-00003102722203019000878:1:6231.00
-00003202C16289149999:2:531.00
-00003102722203019000878:1:4011.00
-00003102722201179804719:1:3701.00
-00003102722201179811504:1:1000.00
-00003102722201179809478:1:985.00
-00003102722201179808072:1:1825.00
-00003102722201179810954:1:5018.00
-00003102722201179803733:1:697.00
-00003102722201179806989:1:627.00
-00003102722201179803775:1:1000.00
-00003102722201179804719:1:3698.00
-00003102722201179803775:1:1000.00
-00003102722203019003755:1:2995.00
-00003102722201179803775:1:1000.00
-00003102722201179808616:1:5369.00
-00003102722201179803152:1:996.00
-00003102722201179803775:1:1000.00
-00003102722201179804877:1:5976.00
-00003102722201179812388:1:2400.00
-00003102722203019000468:1:4960.00
-00003102722201179810954:1:3997.00
-00003102722201179808561:1:700.00
-00003102722203019003889:1:1002.00
-00003102722201179812298:1:31000.00
-00003102722201179811504:1:1000.00
-00003102722201179808592:1:4267.00
-00003102722201179813080:1:1000.00
-00003102722203019000788:1:1005.00
-00003102722201179803044:1:11000.00
-00003102722201179809472:1:250.00
-00003102722201179805426:1:9100.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179808761:1:1689.50
-00003102722201179803775:1:1000.00
-00003102722201179808474:1:2952.00
-00003102722201179804157:1:1000.00
-00003102722201179806932:1:10000.00
-00003102722201179805426:1:6500.00
-00003102722201179803775:1:1000.00
-00003102722201179809044:1:2150.00
-00003102722201179809472:1:498.00
-00003102722201179814110:1:4000.00
-00003102722201179804157:1:1500.00
-00003102722201179812298:1:20000.00
-00003102722201179808422:1:4360.00
-00003102722201179808087:1:5023.11
-00003102722201179808087:1:5998.21
-00003102722201179812206:1:300.00
-00003102722201179811129:1:4381.00
-00003102722203019000798:1:1068.00
-00003102722201179803775:1:1000.00
-00003102722201179804440:1:5365.00
-00003102722201179803420:1:2820.00
-00003102722201179804157:1:500.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179812206:1:900.00
-00003102722201179804446:1:1999.00
-00003102722201179803775:1:1000.00
-00003102722201179812206:1:675.00
-00003102722201179803124:1:399.00
-00003202C16289149999:2:213.00
-00003102722201179804440:1:5365.00
-00003102722201179809455:1:895.00
-00003102722201179805164:1:3000.00
-00003102722201179808616:1:4750.00
-00003102722201179813132:1:1000.00
-00003102722201179812388:1:1400.00
-00003102722201179803420:1:2760.00
-00003102722201179805164:1:10000.00
-00003102722201179809021:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179804877:1:13986.00
-00003102722201179814492:1:10100.00
-00003102722201179803775:1:1000.00
-00003102722201179804877:1:13986.00
-00003102722201179812298:1:5000.00
-00003102722201179805164:1:17000.00
-00003102722201179808616:1:1200.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179808644:1:658.00
-00003102722201179811386:1:1020.00
-00003102722201179803124:1:385.00
-00003102722201179808616:1:4200.00
-00003102722201179818647:1:3004.00
-00003102722201179818713:1:1000.00
-00003102722201179803760:1:910.00
-00003102722201179814492:1:9000.00
-00003102722201179818647:1:3806.00
-00003102722201179806256:1:999.00
-00003102722201179803020:1:928.00
-00003102722201179807969:1:953.00
-00003102722201179813081:1:1000.00
-00003102722203019000723:1:455.00
-00003102722201179813461:1:2452.00
-00003102722201179813461:1:2468.00
-00003102722201179803299:1:4830.00
-00003102722201179812298:1:5000.00
-00003102722201179803160:1:17800.00
-00003102722201179807969:1:452.00
-00003102722201179807969:1:293.00
-00003102722201179812552:1:998.00
-00003102722203019003961:1:2480.00
-00003102722201179806700:1:2788.00
-00003102722201179807969:1:446.00
-00003102722201179808347:1:1000.00
-00003102722201179813935:1:899.00
-00003102722201179806700:1:1888.00
-00003102722201179803775:1:1000.00
-00003102722201179801770:1:999.99
-00003102722203019003961:1:520.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722201179808256:1:1470.00
-00003102722203019000323:1:1033.00
-00003102722201179803775:1:1000.00
-00003102722201179807969:1:592.00
-00003102722201179803287:1:3290.00
-00003102722201179807969:1:199.00
-00003102722201179804290:1:1983.00
-00003102722203019002790:1:1000.00
-00003102722201179806700:1:998.00
-00003102722201179817451:1:980.00
-00003102722201179804290:1:3595.00
-00003102722201179817451:1:980.00
-00003102722201179815791:1:2790.00
-00003102722201179817451:1:985.00
-00003102722201179808819:1:1100.00
-00003102722201179807092:1:10000.00
-00003102722201179807092:1:10000.00
-00003102722201179807969:1:482.00
-00003102722201179806888:1:299.00
-00003102722201179803775:1:1000.00
-00003102722201179803775:1:1000.00
-00003102722203019004096:1:2150.00
-00003102722201179804282:1:7800.00
-00003102722201179803775:1:1000.00
-00003102722201179808807:1:30000.00
-00003102722201179803775:1:1000.00
-00003102722201179802024:1:24010.00
-00003102722201179806888:1:1200.00
-00003102722201179806762:1:3031.00
-00003102722203019004096:1:4130.00
-00003102722203019004096:1:1350.00
-00003102722201179803998:1:21000.00
-00003102722201179811504:1:1000.00
-00003102722201179805983:1:968.00
-00003102722203019003868:1:3987.00
-00003102722201179812324:1:7500.00
-00003102722201179806715:1:2263.00
-00003102722201179803590:1:12008.00
-00003102722201179804638:1:9600.00
-00003102722201179805079:1:1000.00
-00003202C16289149999:2:1252.00
-00003102722203019000146:1:100.00
-00003102722201179804638:1:3000.00
-00003102722201179809187:1:5000.00
-00003102722201179803551:1:3118.00
-00003102722201179808966:1:2115.00
-00003102722201179803551:1:2215.00
-00003102722201179808966:1:3708.00
-00003102722201179805079:1:15.27
-00003102722201179807092:1:15000.00
-00003102722201179808966:1:1588.00
-00003102722201179807092:1:15000.00
-00003102722201179812155:1:14865.00
-00003102722201179801116:1:3958.00
-00003102722201179805079:1:1517.00
-00003102722201179810252:1:1000.00
-00003102722201179811220:1:9880.00
-00003102722203019000188:1:6000.00
-00003102722201179810252:1:500.00
-00003102722203019000776:1:4999.00
-00003102722201179800583:1:1000.00
-00003102722201179807434:1:45000.00
-00003102722201179806883:1:1024.00
-00003102722201179812552:1:997.00
-00003102722201179815523:1:1751.00
-00003102722201179808561:1:750.00
-00003102722201179808561:1:750.00
-00003102722201179808876:1:3433.00
-00005002681889117302:2:702.00
-00003102722201179808876:1:4637.00
-00003102722201179801798:1:21862.00
-00003102722201179812292:1:7980.00
-00003102722201179808803:1:40400.00
-00003102722201179811220:1:4899.99
-00003102722201179812324:1:8600.00
-00003102722201179809014:1:100.10
-00003102722201179800899:1:19863.00
-00003102722201179803668:1:3021.00
-00003102722201179811400:1:4988.00
-00003102722201179818766:1:2000.00
-00003102722201179810201:1:995.00
-00003102722201179808876:1:5361.00
-00003102722201179809455:1:904.00
-00003102722201179808876:1:2729.00
-00003102722201179800899:1:10586.00
-00003102722201179807264:1:3568.00
-00003102722201179809455:1:35.00
-00003102722201179808403:1:2853.00
-00003102722201179818766:1:8000.00
-00003102722201179805444:1:999.00
-00003102722203019003888:1:28230.00
-00003102722201179808876:1:733.00
-00003102722201179810225:1:1000.00
-00003102722201179808641:1:986.60
-00003102722201179807429:1:633.00
-00003102722201179813935:1:969.00
-00003102722201179819000:1:1000.00
-00003102722201179807429:1:2861.00
-00003102722201179807429:1:2055.00
-00003102722201179810252:1:1000.00
-00003102722203019002790:1:4760.00
-00003102722201179810252:1:500.00
-00003102722203019000455:1:15001.00
-00003102722201179801793:1:1050.00
-00003102722201179801793:1:3010.00
-00003102722201179818670:1:335.00
-00003102722201179803538:1:1367.00
-00003102722201179803538:1:1685.00
-00003102722201179808644:1:945.00
-00003102722201179803538:1:1875.00
-00003102722201179811317:1:1562.00
-00003102722201179809000:1:2426.00
-00003102722201179806243:1:4522.00
-00005002681889123709:2:1387.00
-00003102722201179803538:1:2584.00
-00003102722201179811317:1:1488.00
-00003102722201179803538:1:2694.00
-00005002681889123709:2:831.00
-00003102722201179803538:1:2678.00
-00003102722201179805077:1:500.00
-00003102722201179803538:1:2674.00
-00003102722201179808339:1:855.00
-00005002681889126007:2:15890.00
-00005002681889123761:2:2169.00
-00003102722201179808472:1:488.00
-00003102722201179808339:1:799.00
-00005002681889123761:2:2516.00
-00003102722201179818670:1:330.00
-00005002681889123761:2:2673.00
-00003102722201179808226:1:1000.00
-00003102722201179811106:1:1000.00
-00005002681889126014:2:2899.00
-00003102722201179808339:1:810.00
-00003102722201179803929:1:900.00
-00003102722201179806769:1:7800.00
-00003102722201179808155:1:1050.00
-00003102722201179808761:1:1846.00
-00003102722201179807000:1:6548.00
-00003102722201179808497:1:5000.00
-00003102722201179807000:1:564.00
-00003102722201179809128:1:618.00
-00003102722201179808497:1:6999.00
-00003102722201179807468:1:1009.00
-00003102722201179807000:1:3564.00
-00003102722201179811155:1:18600.00
-00003102722201179808229:1:198.00
-00003102722201179818908:1:1000.00
-00003102722201179810281:1:2065.00
-00003102722201179803733:1:998.00
-00003102722201179808000:1:1000.00
-00003102722201179818988:1:2210.00
-00003102722203019002547:1:999.00
-00003102722201179813199:1:920.00
-00003102722201179803981:1:984.00
-00003102722201179818908:1:999.00
-00003102722201179818670:1:330.00
-00003102722201179807902:1:7850.00
-00003102722201179803766:1:14095.00
-00003102722201179803981:1:996.00
-00003102722201179803986:1:958.00
-00003102722201179807425:1:9816.00
-00003102722201179804284:1:21038.00
-00005002681889123770:2:3511.00
-00003102722203019000789:1:1997.00
-00003102722201179804579:1:4530.00
-00003102722201179805152:1:2585.00
-00003102722201179801880:1:15000.00
-00003102722203019000795:1:1105.00
-00003102722201179805987:1:1000.00
-00003102722201179808561:1:900.00
-00003102722201179802651:1:3688.00
-00003102722201179818972:1:990.00
-00003102722203019000833:1:869.00
-00003102722201179803792:1:2503.00
-00003102722201179811939:1:1706.30
-00003102722201179801600:1:2600.00
-00003102722201179806587:1:10000.00
-00003102722201179811169:1:1700.00
-00003102722201179806703:1:3972.00
-00003102722201179811273:1:1021.00
-00003102722201179801090:1:6008.00
-00003102722201179803611:1:934.00
-00003102722201179806703:1:3469.00
-00003102722201179803611:1:934.00
-00003102722201179803611:1:934.00
-00003102722201179803611:1:934.00
-00003102722201179809057:1:38.69
-00003102722201179813698:1:7001.00
-00003102722201179801626:1:4100.00
-00003102722203019000723:1:8900.00
-00003102722203019002778:1:1000.00
-00003102722201179806703:1:2179.00
-00003102722201179807643:1:2980.00
-00003102722203019000723:1:970.00
-00003102722201179815703:1:63.00
-00003102722201179804768:1:2766.00
-00003102722201179806800:1:13064.00
-00003102722201179802651:1:988.00
-00003102722201179809057:1:2536.00
-00003102722201179817691:1:10000.00
-00003102722201179809409:1:7685.00
-00003102722201179802651:1:982.00
-00003102722201179809409:1:7998.00
-00003102722201179809057:1:1236.00
-00003102722201179806587:1:15069.00
-00003102722201179818670:1:325.00
-00003102722201179808597:1:500.00
-00003102722201179806274:1:997.00
-00003102722201179812324:1:8500.00
-00003102722201179802708:1:41999.00
-00003102722201179806765:1:3980.00
-00003102722203019000834:1:1000.00
-00003102722201179806765:1:5830.00
-00003102722201179809478:1:996.00
-00003102722201179813461:1:1852.00
-00003102722201179803568:1:978.00
-00003102722201179806274:1:995.00
-00003102722201179809455:1:897.00
-00003102722201179808817:1:299.00
-00003102722201179813974:1:1963.00
-00003102722201179812306:1:1000.00
-00003102722201179808259:1:299.00
-00003102722201179803819:1:998.00
-00003102722201179812669:1:20000.00
-00003102722201179803819:1:998.00
-00003102722201179801677:1:10000.00
-00003102722201179805080:1:1010.00
-00003102722201179808259:1:1000.00
-00003102722201179801677:1:12000.00
-00003102722203019004131:1:4869.00
-00003102722201179803819:1:998.00
-00003102722201179808221:1:347.00
-00003102722201179806256:1:998.00
-00003102722201179806727:1:3892.00
-00003102722201179805987:1:2352.00
-00003102722201179806769:1:4810.00
-00003102722201179808259:1:3500.00
-00003102722201179810997:1:50000.00
-00003102722201179807097:1:980.00
-00003102722201179808259:1:4400.00
-00003102722201179810997:1:20000.00
-00003102722201179812282:1:2395.00
-00003102722201179809409:1:500.00
-00003102722201179810997:1:20000.00
-00003102722201179803757:1:3550.00
-00003102722201179808298:1:1000.00
-00003102722201179808259:1:3518.00
-00003102722201179811413:1:13582.00
-00003102722201179808817:1:1237.00
-00003102722203019000878:1:5735.00
-00003102722201179802609:1:27998.00
-00003102722201179810997:1:50000.00
-00003102722201179801188:1:18988.00
-00005002681889123768:2:15968.00
-00003102722201179808935:1:2480.00
-00003102722201179811387:1:1053.00
-00005002681889123768:2:10896.00
-00003102722201179810997:1:20000.00
-00003102722201179802331:1:4992.00
-00003102722203019000775:1:1000.00
-00003102722201179818654:1:934.00
-00003102722201179813180:1:2688.00
-00003102722201179806240:1:1000.00
-00003102722201179802344:1:1686.00
-00003102722201179818654:1:934.00
-00003102722201179807756:1:1739.00
-00003102722201179818654:1:934.00
-00003102722201179818654:1:934.00
-00003102722201179819003:1:988.00
-00003102722201179807756:1:2417.00
-00003102722201179812379:1:4700.00
-00003102722201179808221:1:1852.00
-00003102722203019000652:1:10800.00
-00003102722203019000775:1:10.00
-00003102722201179811133:1:19800.00
-00003102722201179810283:1:1100.00
-00003102722201179812552:1:520.00
-00003102722201179808763:1:2091.00
-00003102722201179808763:1:3091.00
-00003102722201179816193:1:1700.00
-00003102722201179801752:1:80000.00
-00003102722201179809455:1:903.00
-00003102722201179802331:1:7998.00
-00003102722201179802411:1:4685.00
-00003102722201179809143:1:980.00
-00003102722201179803797:1:2342.00
-00003102722201179802411:1:4195.00
-00003102722201179809409:1:985.00
-00003102722201179808763:1:5401.20
-00003102722201179803797:1:7583.00
-00003102722201179802411:1:2185.00
-00003102722201179808518:1:1000.00
-00005002681889124151:2:1001.00
-00003102722201179801116:1:6340.00
-00003102722201179812251:1:11150.00
-00003102722201179818962:1:3200.00
-00003102722201179814453:1:17500.00
-00003102722201179800668:1:8198.00
-00003102722201179818962:1:2050.00
-00003102722201179809409:1:911.00
-00005002681889125007:2:4855.00
-00003102722201179809409:1:698.00
-00005002681889125007:2:6122.00
-00003102722201179809452:1:940.00
-00003102722201179809145:1:4950.00
-00003102722201179809145:1:11575.00
-00003102722203019000883:1:4480.00
-00003102722201179807900:1:11764.50
-00003102722201179809145:1:6950.00
-00003102722201179809452:1:945.00
-00003102722201179809145:1:1950.00
-00003102722201179817352:1:1266.00
-00003102722201179809452:1:945.00
-00003102722201179803733:1:943.00
-00003102722203019000883:1:4570.00
-00003102722201179809452:1:2450.00
-00003102722201179807483:1:7860.00
-00003102722201179812250:1:1010.00
-00003102722201179802005:1:9876.59
-00003102722201179806769:1:9500.00
-00003102722203019002790:1:4002.00
-00003102722203019000883:1:5360.00
-00003102722203019003786:1:1957.00
-00003102722203019000878:1:4997.00
-00003102722201179803668:1:1995.00
-00003102722201179807422:1:4079.14
-00003102722201179800790:1:1487.00
-00003102722201179817865:1:998.00
-00003102722201179801628:1:28000.00
-00003102722201179817865:1:996.00
-00003102722201179806272:1:10770.00
-00003102722201179808644:1:982.00
-00003102722201179800790:1:2847.00
-00003102722201179817865:1:996.00
-00003102722201179801748:1:356.00
-00003102722201179802005:1:9988.76
-00003102722201179807422:1:4079.14
-00003102722201179800790:1:1973.00
-00003102722201179818652:1:5199.00
-00003102722201179803998:1:11000.00
-00003102722201179801628:1:32000.00
-00003102722201179803020:1:1465.00
-00003102722201179809478:1:979.00
-00003102722201179801628:1:20000.00
-00003102722201179818652:1:5478.00
-00003102722201179808002:1:26888.00
-00003102722201179801748:1:686.00
-00003102722201179806325:1:11098.00
-00003102722201179808644:1:948.00
-00003102722201179801748:1:380.00
-00003102722201179811408:1:3219.00
-00003102722201179802713:1:5396.00
-00005002681889123606:2:1200.00
-00003102722201179801748:1:4350.00
-00003102722201179806256:1:763.00
-00003102722201179802713:1:6873.00
-00005002681889124151:2:999.00
-00003102722201179811408:1:2801.00
-00003102722201179803107:1:1100.00
-00003102722201179803551:1:3325.00
-00003102722201179818966:1:9000.00
-00003102722203019004074:1:1000.00
-00003102722201179811345:1:1020.00
-00003102722201179817708:1:950.00
-00003102722201179805444:1:996.00
-00005002681889124151:2:989.00
-00003102722201179802193:1:948.00
-00003102722201179808557:1:968.00
-00003102722201179810200:1:982.00
-00003102722201179801842:1:9640.00
-00003102722201179810289:1:1100.00
-00003102722201179802193:1:936.00
-00003102722201179808172:1:4319.00
-00003102722201179803791:1:1000.00
-00003102722201179817708:1:14000.00
-00003102722201179803444:1:2966.00
-00005002681889124151:2:996.00
-00003102722201179803791:1:1000.00
-00003102722201179801116:1:6290.00
-00005002681889125008:2:6985.60
-00003102722201179818966:1:1080.00
-00003102722201179807980:1:955.80
-00003102722203019004074:1:15028.00
-00003102722201179803444:1:2496.00
-00003102722201179803791:1:2000.00
-00005002681889125008:2:2106.00
-00003102722203019003818:1:1050.00
-00005002681889126003:2:5365.00
-00003102722201179803791:1:1000.00
-00003102722201179807980:1:955.80
-00003102722201179807980:1:955.80
-00003102722201179810289:1:1000.00
-00003102722201179807980:1:955.80
-00003102722201179808817:1:4258.00
-00003102722201179811504:1:3000.00
-00003102722201179803107:1:5000.10
-00003102722201179806469:1:19000.00
-00005002681889124152:2:985.00
-00003102722201179816167:1:6050.00
-00003102722201179802303:1:5000.00
-00003102722201179805444:1:998.00
-00003102722201179804090:1:820.00
-00003102722201179804781:1:731.00
-00003102722201179803107:1:1500.00
-00003102722201179807906:1:8019.00
-00003102722201179816167:1:6037.00
-00003102722201179806800:1:4340.00
-00003102722201179804781:1:921.00
-00003102722201179809452:1:4663.00
-00003102722201179806469:1:10000.00
-00003102722201179818645:1:1748.00
-00003102722201179804781:1:537.00
-00003102722201179818645:1:2386.00
-00003102722201179818645:1:2565.00
-00003102722201179809478:1:979.00
-00003102722201179804781:1:654.00
-00003102722203019000833:1:1400.00
-00003102722201179808294:1:1000.00
-00003102722201179802005:1:9875.69
-00003102722201179803107:1:6010.10
-00003102722201179806469:1:1000.00
-00003102722201179804781:1:642.00
-00003102722201179812385:1:2100.00
-00003102722201179804889:1:5673.00
-00003102722201179817865:1:10.00
-00003102722201179804781:1:831.00
-00003102722201179808256:1:1390.00
-00003102722201179817865:1:998.00
-00003102722201179804781:1:141.00
-00005002681889124152:2:154.00
-00003102722201179803409:1:513.00
-00003102722201179803016:1:3108.00
-00003102722201179817743:1:8660.00
-00003102722201179817865:1:996.00
-00003102722201179803409:1:1894.00
-00003102722201179817865:1:999.00
-00003102722201179803409:1:894.00
-00003102722203019004136:1:3970.00
-00003102722201179804781:1:342.00
-00003102722201179817865:1:997.00
-00003102722201179803409:1:394.00
-00003102722201179803558:1:2011.46
-00003102722201179811494:1:8580.00
-00003102722201179803409:1:894.00
-00003102722201179804781:1:269.00
-00003102722201179803409:1:732.00
-00003102722201179809128:1:865.00
-00003102722201179803409:1:894.00
-00003102722201179803409:1:894.00
-00003102722201179804781:1:472.00
-00003102722201179803409:1:894.00
-00003102722201179810200:1:968.00
-00003102722201179803409:1:894.00
-00003102722201179809455:1:904.00
-00003102722201179802412:1:2875.00
-00003102722201179807095:1:5954.00
-00003102722201179806234:1:599.00
-00005002681889123945:2:2000.00
-00003102722201179803935:1:5980.00
-00003102722201179801158:1:1000.00
-00003102722201179817775:1:9885.00
-00005002681889123713:2:1764.00
-00003102722201179817775:1:8855.00
-00003102722201179817449:1:1000.00
-00005002681889123713:2:1765.00
-00003102722201179812121:1:3560.00
-00005002681889124152:2:1010.00
-00003102722201179808355:1:1010.00
-00003102722201179804433:1:4510.00
-00003102722203019003923:1:1000.00
-00003102722201179805154:1:2100.00
-00003102722201179808355:1:11000.00
-00003102722201179812573:1:2968.00
-00003102722201179801700:1:2036.00
-00003102722203019000840:1:1020.00
-00003102722201179809187:1:9500.00
-00003102722201179809143:1:6200.00
-00005002681889123901:2:2450.00
-00003102722201179804383:1:16233.33
-00003102722201179806906:1:29.00
-00005002681889123901:2:420.00
-00003102722203019000188:1:1725.00
-00003102722201179809143:1:8300.00
-00003102722201179803733:1:937.00
-00005002681889123901:2:7840.00
-00003102722201179801104:1:50000.00
-00003102722203019000881:1:9714.00
-00003102722201179810289:1:998.00
-00005002681889123901:2:9750.00
-00005002681889123901:2:1750.00
-00003102722201179803031:1:999.83
-00003102722201179810289:1:798.00
-00003102722201179805983:1:685.00
-00003102722201179802627:1:7880.00
-00005002681889123901:2:450.00
-00005002681889123901:2:480.00
-00003102722201179803031:1:968.08
-00003102722201179802627:1:124.00
-00005002681889123901:2:1740.00
-00003102722201179801790:1:28998.00
-00003102722201179803031:1:986.24
-00005002681889123901:2:960.00
-00003102722203019000191:1:1000.00
-00003102722201179803031:1:998.54
-00003102722203019002547:1:1000.00
-00003102722201179803031:1:996.85
-00003102722201179804284:1:10397.35
-00003102722201179808552:1:6118.00
-00003102722201179803031:1:985.24
-00003102722203019002511:1:1000.00
-00005002681889123757:2:8415.00
-00003102722201179808476:1:2853.00
-00003102722201179808361:1:1100.00
-00003102722201179801739:1:1342.00
-00005002681889123770:2:2789.00
-00003102722201179804238:1:1107.00
-00003102722201179804433:1:4420.00
-00003102722201179814206:1:9000.00
-00003102722201179806711:1:4337.00
-00003102722201179806407:1:1000.00
-00003102722201179805158:1:2510.00
-00003102722201179812699:1:5041.00
-00003102722203019000704:1:1249.00
-00003102722201179816611:1:987.00
-00005002681889120304:2:4500.00
-00003102722201179806268:1:3800.00
-00005002681889119907:2:5674.00
-00003102722201179812699:1:5021.00
-00003102722201179816611:1:690.00
-00003102722201179801314:1:7863.00
-00003102722201179812699:1:5478.00
-00003102722201179819003:1:999.00
-00003102722201179808392:1:14600.00
-00005002681889123757:2:6410.00
-00003102722201179812699:1:5421.00
-00003102722201179810229:1:4702.00
-00003102722201179806711:1:873.00
-00003102722201179812020:1:9120.00
-00005002681889123907:2:1000.00
-00003102722201179809452:1:890.00
-00003102722201179813198:1:3156.00
-00003102722201179809452:1:890.00
-00003102722203019000759:1:500.11
-00005002681889123951:2:1000.00
-00003102722201179805091:1:10070.00
-00003102722201179811345:1:3805.00
-00003102722203019000836:1:1490.00
-00003102722201179817408:1:5500.00
-00003102722201179804889:1:4900.00
-00003102722201179808883:1:950.00
-00003102722203019000836:1:1963.00
-00003102722203019000836:1:297.00
-00003102722201179804890:1:1010.00
-00003102722201179807969:1:947.00
-00003102722201179802797:1:5680.00
-00003102722201179811345:1:4355.00
-00003102722201179812132:1:7322.00
-00003102722201179803568:1:976.00
-00003102722201179803410:1:3520.00
-00003102722201179807969:1:1025.00
-00003102722203019000878:1:40.00
-00003102722201179802797:1:9370.00
-00003102722201179818648:1:1000.00
-00003102722203019000878:1:40.00
-00003102722201179811511:1:1000.00
-00003102722201179818648:1:2000.00
-00003102722201179806572:1:1000.00
-00003102722203019000787:1:1008.00
-00003102722201179818648:1:1999.00
-00003102722201179808764:1:22600.00
-00003102722201179808763:1:7802.00
-00003102722201179803410:1:5080.00
-00003102722201179807969:1:540.00
-00003102722201179809455:1:921.00
-00003102722201179811345:1:4310.00
-00003102722201179810289:1:999.00
-00003102722201179811511:1:39000.00
-00003102722201179807969:1:245.00
-00003102722201179805158:1:9889.00
-00003102722201179804890:1:1000.00
-00003102722201179812699:1:5014.00
-00003102722201179807969:1:398.00
-00003102722201179811600:1:1000.00
-00003102722201179812699:1:5124.00
-00003102722201179807969:1:1946.00
-00003102722201179812699:1:4210.00
-00003102722203019003813:1:1001.00
-00003102722201179803905:1:9432.00
-00003102722201179812699:1:4315.00
-00003102722201179809478:1:978.00
-00003102722201179811388:1:1006.00
-00003102722201179808229:1:3427.00
-00003102722201179808957:1:6233.00
-00003102722201179811388:1:1006.00
-00003102722201179811121:1:5000.00
-00003102722201179805158:1:2100.00
-00003102722201179808400:1:1800.00
-00003102722201179806268:1:988.00
-00003102722203019003721:1:1000.00
-00005002681889124042:2:1000.05
-00003102722201179802716:1:2500.00
-00003102722201179811939:1:1701.20
-00003102722201179804767:1:3657.00
-00003102722201179811602:1:1000.00
-00003102722201179803921:1:5201.00
-00003102722201179803611:1:886.00
-00003102722201179803611:1:944.00
-00005002681889123908:2:1200.00
-00003102722201179808610:1:2568.00
-00003102722201179809452:1:3850.00
-00003102722201179811169:1:1500.00
-00003102722201179803611:1:957.00
-00003102722201179803611:1:957.00
-00003102722201179804889:1:5158.00
-00003102722201179808610:1:2856.00
-00003102722201179808400:1:13253.00
-00003102722201179811155:1:12800.00
-00003102722201179815791:1:3210.00
-00003102722201179808071:1:9860.00
-00003102722201179811939:1:382.30
-00003102722201179808610:1:2650.00
-00003102722201179805410:1:1962.00
-00003102722201179808247:1:2987.00
-00003102722201179811151:1:350.00
-00003102722201179817446:1:1000.00
-00003102722201179805192:1:965.00
-00003102722201179806716:1:19980.00
-00005002681889126996:2:1001.00
-00003102722203019002786:1:1000.00
-00003102722201179817446:1:10600.00
-00003102722201179808229:1:1427.00
-00003102722201179808071:1:9780.00
-00003102722201179818626:1:3000.00
-00003102722201179801149:1:1000.00
-00003102722201179803782:1:8369.00
-00003102722201179810260:1:1030.00
-00005002681889117302:2:451.00
-00003102722201179810289:1:870.00
-00003102722201179808071:1:9960.00
-00003102722203019001159:1:1000.00
-00005002681889117302:2:451.00
-00003102722201179815559:1:967.00
-00003102722201179806983:1:704.00
-00005002681889117302:2:451.00
-00003102722201179808227:1:1025.00
-00003102722201179810999:1:906.00
-00003102722201179806983:1:635.00
-00003102722201179815559:1:846.00
-00003102722201179806208:1:255.00
-00005002681889123952:2:1000.00
-00003102722201179807959:1:1000.00
-00003102722203019000305:1:1000.50
-00003102722201179813515:1:1600.00
-00003102722201179806716:1:12800.00
-00003102722201179801320:1:4426.00
-00003102722203019003705:1:1000.00
-00003102722201179815581:1:1000.00
-00003102722201179810260:1:315.00
-00003102722201179809145:1:13001.00
-00003102722201179801320:1:2397.00
-00003102722201179809145:1:12000.10
-00005002681889125056:2:1000.00
-00003102722201179812285:1:2781.00
-00005002681889120308:2:1000.00
-00003102722201179800588:1:1990.00
-00003102722201179808400:1:12.30
-00003102722201179806208:1:1000.00
-00003102722201179804284:1:14012.00
-00003102722201179808155:1:3850.00
-00003102722203019000722:1:1000.00
-00003102722201179810283:1:966.00
-00003102722203019000752:1:1000.00
-00003102722201179801626:1:26000.00
-00003102722201179808761:1:1537.00
-00003102722201179810286:1:1000.00
-00003102722201179806208:1:600.00
-00003102722201179804970:1:3620.00
-00003102722201179808155:1:2590.00
-00003102722201179803736:1:1000.00
-00003102722201179805647:1:1000.00
-00003102722201179804970:1:2570.00
-00003102722201179810225:1:938.00
-00003102722201179810229:1:998.00
-00003102722201179806234:1:793.00
-00003102722201179813830:1:5001.63
-00003102722201179806208:1:600.00
-00003102722201179804970:1:3920.00
-00003102722201179808078:1:5974.00
-00003102722201179810283:1:985.00
-00003102722201179803733:1:869.00
-00003102722201179811516:1:1000.00
-00003102722203019003961:1:2800.00
-00003102722201179803425:1:600.00
-00003102722201179803760:1:1000.00
-00003102722201179806208:1:1500.00
-00003102722201179808610:1:2720.00
-00003102722201179803425:1:400.00
-00003102722201179803405:1:3164.00
-00003102722201179807265:1:7625.00
-00003102722201179811516:1:1000.00
-00003102722201179803980:1:8500.00
-00003102722203019000301:1:968.00
-00003102722201179811400:1:5965.00
-00003102722201179806364:1:1000.00
-00003102722201179806364:1:1700.00
-00003102722203019000301:1:982.00
-00003102722201179810283:1:4966.00
-00003102722201179805077:1:1000.00
-00003102722201179807477:1:4131.00
-00003102722201179806364:1:2010.00
-00003102722201179803668:1:2512.00
-00003102722201179817771:1:3676.00
-00003102722201179810954:1:3999.00
-00003102722203019000301:1:985.00
-00003102722201179814493:1:1000.00
-00003102722201179810283:1:988.00
-00003102722201179803552:1:498.00
-00003102722201179803803:1:1000.00
-00003102722203019002603:1:1005.00
-00003102722201179803803:1:11800.00
-00003102722201179808773:1:1000.00
-00003102722203019000301:1:986.00
-00003102722201179807918:1:2005.00
-00003102722201179810225:1:988.00
-00003102722201179803905:1:9683.00
-00003102722201179808715:1:1000.00
-00003102722201179804310:1:9500.00
-00003102722201179812819:1:1000.00
-00003102722201179803901:1:2029.00
-00003102722201179809499:1:518.00
-00003102722201179809499:1:911.00
-00003102722201179809499:1:911.00
-00003102722201179809499:1:911.00
-00003102722201179805658:1:3962.00
-00003102722201179809499:1:719.00
-00003102722201179809499:1:28.00
-00003102722201179818972:1:992.00
-00003102722201179809455:1:897.99
-00003102722201179809499:1:65.00
-00003102722201179803796:1:13000.00
-00003102722201179809499:1:643.00
-00003102722201179809499:1:521.00
-00003102722201179809452:1:2980.00
-00003102722201179809499:1:911.00
-00003102722201179808639:1:1001.00
-00003102722203019000598:1:39999.99
-00003102722201179809452:1:990.00
-00003102722201179804877:1:7965.00
-00003102722201179804877:1:8369.00
-00003102722201179811269:1:1231.00
-00003102722201179809452:1:990.00
-00003102722201179811522:1:1653.00
-00003102722201179804877:1:968.00
-00003102722201179804877:1:982.00
-00003102722201179809195:1:3064.00
-00003102722201179803685:1:2438.00
-00003102722201179811382:1:1001.00
-00003102722201179804877:1:2986.00
-00003102722201179803685:1:2769.00
-00003102722201179810991:1:4000.00
-00003102722201179803685:1:3685.00
-00003202C16289149999:2:4626.80
-00003102722201179803685:1:1368.00
-00005002681889120305:2:28.88
-00003102722201179801708:1:4002.00
-00003102722201179810201:1:997.00
-00003102722201179804726:1:9125.00
-00003102722201179801588:1:1100.00
-00003102722201179808639:1:1000.00
-00003102722201179803156:1:1000.00
-00003102722201179811601:1:29986.00
-00003102722201179808639:1:1000.00
-00003102722201179810286:1:600.00
-00003102722201179811601:1:16050.00
-00003102722201179811314:1:2532.00
-00003102722201179811511:1:3180.00
-00003102722201179807901:1:3588.00
-00003102722201179802681:1:6422.00
-00003102722201179806256:1:765.00
-00003102722201179810286:1:601.00
-00003102722201179804877:1:2896.00
-00003102722201179803700:1:13500.00
-00003102722201179810286:1:601.00
-00003102722201179803036:1:14960.00
-00003102722201179811511:1:28600.00
-00003102722201179801195:1:1000.00
-00003102722201179803544:1:21854.00
-00003102722201179810283:1:2800.00
-00003102722201179807266:1:5290.00
-00003102722203019000301:1:986.00
-00003102722201179803986:1:972.00
-00003102722201179802010:1:5493.00
-00003102722201179810286:1:601.00
-00003102722201179813930:1:2268.00
-00003102722201179803736:1:1000.00
-00003102722201179814215:1:3970.00
-00005002681889123754:2:12985.00
-00003102722201179814215:1:1370.00
-00003102722201179804263:1:7760.00
-00003102722201179810286:1:601.00
-00003102722201179811496:1:2710.00
-00003102722201179804263:1:18865.00
-00003102722201179804263:1:9870.00
-00003102722201179810286:1:602.00
-00003102722201179804726:1:14258.00
-00003102722201179810286:1:601.00
-00003102722201179806765:1:9990.00
-00003102722201179804877:1:3697.00
-00003102722201179803454:1:2563.42
-00003102722201179808256:1:1210.00
-00003102722201179808585:1:998.50
-00003102722203019003873:1:2996.00
-00003102722201179804877:1:3897.00
-00003102722201179806587:1:9869.00
-00003102722201179810286:1:600.00
-00003102722201179804877:1:5986.00
-00003102722201179805426:1:4200.00
-00003102722201179809455:1:904.00
-00003102722201179805426:1:6050.00
-00003102722201179810225:1:911.00
-00003102722201179804877:1:5369.00
-00003102722201179813198:1:1631.00
-00003102722201179807483:1:4580.00
-00003102722201179810286:1:602.00
-00003102722201179812819:1:10000.00
-00003102722201179817333:1:105.00
-00003102722201179801690:1:4855.00
-00003102722201179801366:1:8755.00
-00003102722201179806249:1:1915.00
-00003102722201179801690:1:2759.00
-00003102722201179818649:1:1600.00
-00003102722201179804726:1:14525.00
-00003102722201179810286:1:601.00
-00003102722201179808585:1:998.50
-00003102722201179810286:1:602.00
-00003102722201179803551:1:868.00
-00003102722203019000806:1:9308.00
-00003102722201179808561:1:600.00
-00003102722201179808227:1:1015.00
-00003102722201179810286:1:600.00
-00003102722201179814234:1:10000.00
-00003102722201179804726:1:525.00
-00005002681889126040:2:1016.00
-00003102722201179806280:1:10060.00
-00003102722201179810286:1:600.00
-00003102722201179800491:1:8000.00
-00003102722201179818649:1:4700.00
-00003102722201179810286:1:602.00
-00003102722201179808455:1:1.50
-00003102722201179818975:1:50.00
-00003102722201179806817:1:1000.00
-00003102722201179808253:1:2997.00
-00003102722201179808616:1:3810.00
-00003102722203019003755:1:3000.00
-00003102722201179804726:1:8836.00
-00003102722201179809452:1:921.00
-00003102722201179808253:1:1764.00
-00003102722201179818649:1:2600.00
-00003102722201179809452:1:921.00
-00003102722201179812441:1:1000.00
-00003102722201179809134:1:23333.00
-00003102722201179802004:1:5100.00
-00003102722201179817710:1:3100.00
-00003102722201179812121:1:3490.00
-00003102722201179809452:1:3985.00
-00003102722201179810286:1:603.00
-00003102722201179811271:1:3409.00
-00003102722201179811551:1:1010.00
-00003102722203019003855:1:2532.00
-00003102722201179810286:1:601.00
-00003102722201179812442:1:1000.00
-00003102722201179810286:1:193.00
-00003102722201179803826:1:1000.00
-00003102722201179803285:1:2018.00
-00003102722201179803720:1:999.99
-00003102722201179803986:1:960.00
-00003102722203019003855:1:2020.00
-00003102722201179805155:1:3008.00
-00003102722201179813770:1:1000.00
-00003102722201179803986:1:608.00
-00003102722201179807003:1:1000.00
-00003102722201179809452:1:996.00
-00003102722201179809452:1:352.00
-00003102722201179809468:1:58.00
-00003102722201179811092:1:6900.00
-00003102722201179803441:1:7556.60
-00003102722201179806208:1:9880.00
-00003102722203019000705:1:1140.00
-00003102722203019000799:1:2738.00
-00003102722201179803551:1:2615.00
-00005002681889124080:2:1250.00
-00003102722201179800634:1:5240.00
-00003102722201179803223:1:10480.00
-00003102722201179801608:1:5755.00
-00005002681889123951:2:6999.00
-00003102722201179801290:1:1000.00
-00003102722201179808606:1:12835.00
-00003102722201179801608:1:11862.00
-00005002681889123951:2:4379.00
-00005002681889123797:2:1842.00
-00003102722201179813199:1:740.00
-00003102722201179808135:1:9658.00
-00003102722201179808135:1:9756.00
-00003102722201179803124:1:1770.00
-00003102722201179803733:1:648.00
-00003102722201179804242:1:11840.00
-00003102722201179803185:1:2527.00
-00003102722201179803124:1:2110.00
-00003102722201179811373:1:1020.00
-00003102722201179812212:1:1000.00
-00003102722201179806472:1:1000.00
-00003102722201179811031:1:6325.00
-00003102722201179810268:1:1025.00
-00003102722201179817454:1:1000.00
-00003102722201179802879:1:3012.00
-00003102722201179807000:1:5464.00
-00003102722201179813170:1:1876.00
-00003102722201179810994:1:17082.00
-00003102722201179811400:1:2876.00
-00003102722201179809455:1:896.00
-00003102722201179802879:1:3025.00
-00003102722201179807000:1:7895.00
-00003102722201179808641:1:965.00
-00003102722201179812212:1:980.00
-00003102722201179803498:1:3007.00
-00003102722201179802004:1:1500.00
-00003102722201179808561:1:850.00
-00003102722201179802879:1:405.00
-00003102722201179808283:1:7005.20
-00003102722201179802879:1:2982.00
-00003102722201179812212:1:980.00
-00003102722201179803061:1:4250.00
-00003102722201179803720:1:869.00
-00003102722201179818612:1:30000.00
-00003102722201179803720:1:968.00
-00003102722201179813558:1:1000.00
-00003102722201179818972:1:862.00
-00003102722201179813241:1:1582.05
-00003102722201179813558:1:2800.00
-00003102722201179804889:1:5500.00
-00005002681889126038:2:1026.00
-00003102722201179809498:1:895.00
-00003102722201179804079:1:1000.00
-00003102722201179812132:1:7495.00
-00003102722201179800486:1:986.00
-00003102722201179818612:1:7950.00
-00003102722201179811373:1:196.00
-00003102722201179803529:1:1000.00
-00003102722201179805192:1:896.00
-00003102722201179818665:1:4600.00
-00003102722201179815782:1:2130.00
-00005002681889126003:2:46500.00
-00003102722201179808941:1:1000.00
-00003102722203019000806:1:11680.00
-00003102722203019003691:1:2000.00
-00003102722201179817719:1:925.00
-00003102722201179804872:1:2618.00
-00003102722201179815782:1:3985.00
-00003102722201179806962:1:5630.00
-00003102722201179809145:1:10010.00
-00003102722201179809145:1:15001.00
-00003102722201179808392:1:500.00
-00003102722201179814457:1:3000.00
-00003102722201179803529:1:18800.00
-00003102722201179809134:1:3311.00
-00003102722201179801633:1:1240.00
-00003102722201179808941:1:2500.00
-00003102722201179803498:1:3003.00
-00003102722201179815782:1:1615.00
-00003102722201179803529:1:10000.00
-00003102722201179815782:1:2515.00
-00003102722201179814457:1:10000.00
-00003102722201179809452:1:855.00
-00003102722201179814488:1:9999.99
-00003102722201179811373:1:729.00
-00003102722201179808941:1:1000.00
-00003102722201179814488:1:9999.99
-00003102722201179809452:1:855.00
-00003102722201179817719:1:1325.80
-00003102722201179814457:1:10000.00
-00003102722201179807003:1:2995.00
-00003102722201179811334:1:22001.00
-00003102722201179803109:1:13100.00
-00003102722201179817719:1:2611.50
-00003102722201179809452:1:4500.00
-00003102722201179804887:1:1000.00
-00003102722201179808585:1:455.00
-00003102722201179807003:1:1987.00
-00003102722201179817719:1:1256.80
-00003102722201179809452:1:3950.00
-00003102722201179801146:1:29585.00
-00003102722201179808155:1:3200.00
-00003102722203019002776:1:1000.00
-00003102722201179817719:1:2369.00
-00003102722201179806701:1:4326.00
-00003102722201179818612:1:6500.00
-00003102722201179806256:1:961.00
-00003102722201179807000:1:3428.00
-00003102722201179811034:1:299.00
-00003102722201179806262:1:3900.00
-00003102722201179803954:1:9998.00
-00003102722201179809478:1:978.00
-00003102722201179811034:1:1585.00
-00003102722201179806717:1:380.00
-00003102722201179803529:1:5230.00
-00003102722201179806717:1:32.76
-00003102722201179811155:1:28650.00
-00003102722201179803954:1:9998.00
-00003102722201179803880:1:1000.00
-00003102722203019004133:1:4983.00
-00003102722201179809478:1:985.00
-00003102722201179812352:1:1000.00
-00003102722201179818923:1:1000.00
-00003102722201179811155:1:12350.00
-00003102722201179807425:1:10312.00
-00003102722203019000797:1:938.00
-00003102722203019000797:1:937.00
-00003102722201179818612:1:13500.00
-00003102722201179818988:1:700.00
-00003102722201179810200:1:29865.00
-00003102722201179808641:1:999.70
-00003102722201179818923:1:190.00
-00003102722201179806575:1:1050.00
-00003102722201179803529:1:28100.00
-00003102722201179812105:1:11000.00
-00003102722201179818923:1:500.00
-00003102722201179807980:1:872.50
-00003102722201179809455:1:904.00
-00003102722201179807980:1:872.50
-00003102722201179803986:1:981.00
-00003102722201179804768:1:3356.00
-00003102722201179808069:1:980.00
-00005002681889125091:2:1240.00
-00005002681889126039:2:1043.00
-00003102722201179808489:1:2975.00
-00003102722201179808069:1:890.00
-00003102722201179803017:1:4590.30
-00003102722201179808876:1:4359.00
-00003102722201179803941:1:935.00
-00003102722201179807980:1:872.50
-00003102722201179808876:1:4997.00
-00003102722201179808641:1:160.00
-00003102722201179808069:1:1550.00
-00003102722201179801146:1:32585.00
-00003102722201179812121:1:3370.00
-00003102722201179803017:1:4358.00
-00003102722201179803941:1:899.00
-00003102722201179807980:1:872.50
-00003102722201179805421:1:4632.00
-00003102722201179803797:1:8236.00
-00003102722201179803797:1:3825.00
-00003102722201179803941:1:1000.00
-00003102722203019003866:1:3000.00
-00003102722203019002547:1:999.00
-00003102722201179803017:1:534.06
-00003102722203019003866:1:300.00
-00003102722201179804638:1:5400.00
-00003102722201179809128:1:1503.00
-00003102722201179803017:1:8354.60
-00003102722201179808876:1:2328.00
-00003102722201179804638:1:10800.00
-00003102722201179808876:1:1823.00
-00003102722201179808876:1:1323.00
-00005002681889125901:2:1010.00
-00003102722201179802743:1:3312.00
-00003102722201179802743:1:4183.00
-00003102722201179807265:1:7320.00
-00003102722201179815552:1:7568.00
-00003102722201179807997:1:3268.00
-00003102722201179804263:1:9665.00
-00003102722201179811514:1:1000.00
-00003102722201179807265:1:2720.00
-00003102722201179807000:1:2156.00
-00003102722201179808069:1:998.00
-00003102722201179807301:1:962.00
-00003102722201179807498:1:3896.00
-00003102722201179813694:1:3580.00
-00003102722201179802859:1:1000.00
-00003102722201179802712:1:1000.00
-00003102722201179809193:1:1000.00
-00003102722201179802859:1:934.00
-00003102722201179806700:1:999.00
-00003102722201179811514:1:11800.00
-00003102722201179809950:1:1000.00
-00003102722201179811552:1:1010.00
-00003102722201179808632:1:2053.00
-00003102722201179813694:1:2685.00
-00003102722201179810206:1:6800.00
-00003102722201179808980:1:5490.00
-00003102722203019002660:1:1000.00
-00003102722201179807953:1:1000.00
-00003102722201179803498:1:2942.00
-00003102722203019000833:1:6000.00
-00003102722201179812250:1:1145.00
-00003102722201179800486:1:972.00
-00003102722201179809145:1:5001.00
-00003102722201179806883:1:973.00
-00003102722201179808440:1:12047.00
-00003102722201179818923:1:865.29
-00003102722201179809145:1:19989.80
-00003102722201179812250:1:725.00
-00003102722201179811842:1:499.00
-00003102722203019000732:1:1230.00
-00005002681889123930:2:3998.00
-00003102722201179818923:1:868.91
-00003102722201179811413:1:6215.00
-00003102722201179805658:1:4635.00
-00003102722201179808850:1:932.00
-00003102722201179806312:1:1000.00
-00003102722201179808850:1:3268.00
-00003102722201179804263:1:895.00
-00003102722201179803799:1:1312.00
-00003102722201179803799:1:700.00
-00003102722201179815577:1:1000.00
-00003102722201179814202:1:2841.32
-00003102722201179806240:1:1000.00
-00003102722201179817439:1:8000.00
-00003102722201179809455:1:904.00
-00003102722201179808644:1:542.00
-00003102722201179803779:1:1000.00
-00003102722201179804263:1:18650.00
-00003102722201179803905:1:2600.00
-00003102722201179804263:1:17850.00
-00003102722201179802689:1:2376.00
-00003102722201179803042:1:452.00
-00003102722201179802689:1:2376.00
-00003102722201179808644:1:852.00
-00003102722201179802689:1:2376.00
-00003102722203019002750:1:1000.00
-00003102722201179817475:1:1000.00
-00003102722201179808850:1:3652.00
-00003102722201179808850:1:962.00
-00003102722201179817781:1:8458.00
-00003102722201179808850:1:987.00
-00003102722201179806289:1:1000.00
-00005002681889123765:2:1090.00
-00003102722203019002750:1:23700.00
-00003102722201179806262:1:3988.00
-00003102722201179809499:1:753.00
-00003102722201179817690:1:1000.00
-00003102722201179809499:1:753.00
-00003102722201179809499:1:753.00
-00003102722201179809499:1:753.00
-00003102722201179812818:1:3600.00
-00003102722201179804439:1:2356.00
-00003102722201179807003:1:1000.00
-00003102722201179807003:1:3493.00
-00003102722201179808753:1:1032.00
-00003102722201179809452:1:965.00
-00003102722201179809452:1:965.00
-00003102722201179809145:1:24980.00
-00003102722201179803986:1:972.00
-00003102722203019000157:1:3856.00
-00003102722201179808131:1:4869.00
-00003102722201179806876:1:2598.80
-00003102722203019003755:1:1872.00
-00003102722201179809125:1:6800.00
-00003102722201179806312:1:1000.00
-00003102722201179802681:1:4521.00
-00005002681889123713:2:737.00
-00003102722201179801182:1:180.00
-00005002681889123713:2:737.00
-00005002681889123713:2:334.00
-00005002681889123713:2:334.00
-00003102722201179813515:1:3200.00
-00003102722203019000881:1:9137.00
-00003102722203019002790:1:4500.00
-00003102722201179803974:1:2900.00
-00003102722201179811979:1:3000.00
-00003102722201179805008:1:2246.00
-00003102722201179811151:1:2489.00
-00003102722201179805434:1:452.00
-00003102722201179802794:1:10.10
-00003102722201179807422:1:4069.58
-00003102722201179806262:1:5000.00
-00003102722201179806312:1:1000.00
-00003102722201179811151:1:1081.00
-00003102722201179806762:1:2894.00
-00003102722201179803811:1:2550.00
-00003102722201179807422:1:4019.50
-00003102722201179804223:1:1000.00
-00003102722203019000833:1:619.00
-00003102722201179806312:1:1000.00
-00003102722201179804768:1:1301.00
-00003102722201179807643:1:3580.00
-00003102722201179817866:1:952.00
-00005002681889123918:2:130.00
-00003102722201179808161:1:1497.00
-00003102722201179817866:1:952.00
-00003102722201179817866:1:952.00
-00005002681889123918:2:1380.00
-00003102722201179807674:1:180.00
-00003102722201179803757:1:3954.00
-00003102722201179811143:1:9968.00
-00005002681889123918:2:7100.00
-00003102722201179816611:1:963.00
-00003102722201179806268:1:2155.00
-00003102722201179816177:1:2680.00
-00003102722201179804889:1:4679.00
-00003102722201179804310:1:5000.00
-00003102722201179816611:1:987.00
-00003102722201179807674:1:3019.50
-00003102722201179816177:1:3260.00
-00003102722201179800870:1:4168.00
-00003102722201179811553:1:6950.00
-00003102722203019003691:1:6000.00
-00003102722201179802794:1:7579.00
-00003102722201179807643:1:4980.00
-00003102722201179807498:1:2376.00
-00003102722201179812817:1:1280.00
-00003102722201179806800:1:4313.00
-00003102722201179803983:1:910.00
-00003102722201179803983:1:910.00
-00003102722201179800589:1:1000.00
-00003102722201179803983:1:910.00
-00003102722201179806326:1:3217.00
-00003102722201179803983:1:910.00
-00003102722201179806326:1:3419.00
-00003102722201179800589:1:927.00
-00003102722201179803983:1:910.00
-00003102722201179813254:1:121.21
-00003102722201179803611:1:977.00
-00003102722201179808561:1:900.00
-00003102722201179811979:1:2000.00
-00003102722201179809188:1:3809.00
-00003102722203019002790:1:5000.00
-00003102722201179807643:1:2740.00
-00003102722201179803611:1:977.00
-00003102722201179806267:1:1000.00
-00003102722201179803983:1:900.00
-00003102722201179803983:1:900.00
-00003102722201179803611:1:977.00
-00003102722201179803983:1:900.00
-00003102722201179816177:1:4368.00
-00003102722201179800589:1:917.00
-00003102722201179803983:1:900.00
-00003102722201179808259:1:11000.00
-00003102722201179809455:1:902.00
-00003102722201179800589:1:938.00
-00003102722201179807674:1:3844.00
-00003102722201179800870:1:12869.00
-00003102722201179811143:1:2998.00
-00003102722201179802196:1:3877.00
-00003102722201179801314:1:947.00
-00003102722201179801343:1:3000.00
-00003102722201179805156:1:10000.00
-00003102722201179806709:1:755.00
-00003102722201179803409:1:832.00
-00003102722201179806709:1:3265.00
-00003102722201179803409:1:943.00
-00003102722201179806709:1:3135.00
-00003102722201179803409:1:581.00
-00003102722201179806709:1:2465.00
-00003102722201179806709:1:1835.00
-00003102722201179806709:1:2325.00
-00003102722201179806709:1:1869.00
-00003102722201179806906:1:16100.00
-00003102722201179803409:1:732.00
-00003102722201179806709:1:1785.00
-00003102722201179811347:1:1003.00
-00003102722201179806709:1:1858.00
-00003102722201179803409:1:894.00
-00003102722201179806709:1:2965.00
-00003102722201179806709:1:2565.00
-00003102722201179806234:1:1390.00
-00003102722201179803409:1:512.00
-00003102722201179806709:1:3368.00
-00003102722201179806709:1:1858.00
-00003102722201179803409:1:732.00
-00003102722201179808761:1:2585.60
-00003102722201179808237:1:8280.00
-00003102722201179806709:1:1240.00
-00003102722201179813790:1:6000.00
-00003102722201179803409:1:1374.00
-00003102722201179806709:1:2465.00
-00003102722201179805426:1:6380.00
-00003102722201179806709:1:2988.00
-00003102722201179803409:1:2973.00
-00003102722201179806709:1:3348.00
-00003102722201179803409:1:1263.00
-00003102722201179817418:1:1325.00
-00003102722201179806709:1:3656.00
-00003102722201179803409:1:1263.00
-00003102722201179803409:1:1263.00
-00003102722201179812779:1:53.70
-00003102722201179806256:1:762.00
-00003102722201179813171:1:1630.00
-00003102722201179812779:1:5312.00
-00003102722201179803941:1:999.00
-00003102722201179803668:1:2014.00
-00003102722201179806262:1:4000.00
-00003102722201179803941:1:865.00
-00003102722201179803941:1:975.00
-00003102722201179806711:1:5374.00
-00003102722201179808623:1:5169.00
-00003102722201179806161:1:1650.00
-00003102722201179808259:1:12000.00
-00003102722201179817709:1:10000.00
-00003102722201179802025:1:100.00
-00003102722203019003705:1:2800.00
-00003102722203019003787:1:6800.00
-00003102722203019003901:1:13280.00
-00003102722201179802025:1:5769.50
-00003102722201179817709:1:7000.00
-00003102722201179807002:1:1000.00
-00003102722203019003901:1:5255.00
-00003102722201179802681:1:4032.00
-00003102722201179808438:1:3556.00
-00003102722201179800584:1:299.00
-00003102722203019003787:1:5200.00
-00003102722201179809452:1:992.00
-00003102722203019003901:1:7255.00
-00003102722203019003901:1:2598.00
-00003102722201179805932:1:2560.00
-00003102722201179800584:1:1000.00
-00003102722201179809452:1:992.00
-00003102722201179808438:1:3665.00
-00003102722203019003901:1:4588.00
-00003102722203019003901:1:7250.00
-00003102722201179809452:1:2995.00
-00003102722203019003901:1:800.00
-00003102722201179802025:1:5575.50
-00003102722201179809480:1:1000.00
-00003102722201179810994:1:17520.00
-00003102722201179801122:1:2300.00
-00003102722201179808709:1:6800.00
-00003102722201179801122:1:1500.00
-00003102722201179809452:1:5525.00
-00003102722201179802609:1:27400.00
-00003102722201179801738:1:855.00
-00003102722201179808489:1:3190.00
-00003102722201179803125:1:1000.00
-00003102722201179817709:1:1000.00
-00003102722201179803819:1:998.00
-00003102722203019003812:1:1051.00
-00003102722201179803819:1:998.00
-00003102722201179803819:1:998.00
-00005002681889123709:2:1637.00
-00003102722203019003901:1:3185.00
-00005002681889126040:2:987.75
-00003102722203019003901:1:2150.00
-00003102722203019003901:1:5328.00
-00003102722203019000881:1:9142.00
-00003102722203019003901:1:4280.00
-00003102722203019003901:1:15280.00
-00003102722201179809455:1:896.00
-00003102722201179811169:1:1500.00
-00003102722201179811169:1:930.00
-00003102722201179801004:1:984.00
-00003102722201179811386:1:9265.00
-00003102722203019000878:1:3491.00
-00003102722201179807415:1:610.00
-00003102722203019000878:1:3767.00
-00003102722203019000104:1:6273.00
-00003102722201179811148:1:100.00
-00003102722201179807674:1:3925.00
-00003102722203019000104:1:299.00
-00003102722201179800790:1:2486.00
-00003102722201179803752:1:1000.00
-00003102722201179807969:1:360.00
-00003102722201179800790:1:2724.00
-00003102722201179803125:1:1000.00
-00003102722203019000881:1:8714.00
-00003102722201179807447:1:1733.00
-00003102722201179806364:1:3200.00
-00003102722201179811148:1:19700.00
-00003102722203019004096:1:9630.00
-00003102722201179810230:1:1000.00
-00003102722201179807969:1:498.00
-00003102722203019004096:1:3420.00
-00003102722201179807969:1:252.00
-00003102722201179807447:1:2763.00
-00003102722203019004096:1:4680.00
-00003102722201179808816:1:20000.00
-00003102722203019004096:1:9870.00
-00003102722201179807674:1:2885.00
-00003102722201179808963:1:12000.00
-00003102722201179807447:1:8713.00
-00003102722201179814524:1:2450.00
-00003102722201179801155:1:1000.00
-00003102722201179808816:1:30000.00
-00003102722203019004096:1:5320.00
-00003102722201179801155:1:4200.00
-00003102722201179807447:1:9311.00
-00003102722201179805438:1:1420.00
-00003102722201179807447:1:872.00
-00005002681889123643:2:1035.00
-00003102722201179801155:1:9500.00
-00003102722201179800897:1:1000.00
-00003102722201179809069:1:5218.00
-00003102722201179809069:1:4188.00
-00003102722201179802743:1:2072.00
-00003102722201179809069:1:9218.00
-00003102722201179802743:1:5119.00
-00003102722201179804768:1:2019.00
-00003102722201179801116:1:3060.00
-00003102722201179803986:1:998.00
-00003102722201179805932:1:1057.00
-00003102722201179813752:1:7328.00
-00003102722201179817418:1:633.00
-00003102722201179813752:1:4139.00
-00003102722201179808347:1:1537.00
-00003102722201179813752:1:1983.00
-00003102722201179813752:1:679.00
-00003102722201179807425:1:4379.00
-00003102722201179808747:1:999.00
-00003102722201179808259:1:11060.00
-00003102722201179806989:1:532.00
-00003102722201179803752:1:1000.00
-00003102722201179807798:1:12400.00
-00003102722201179811504:1:1000.00
-00003102722201179807265:1:4935.00
-00003102722203019000776:1:4499.00
-00003102722201179807265:1:3790.00
-00003102722201179811504:1:999.00
-00003102722203019000723:1:1100.00
-00003102722201179810252:1:1000.00
-00003102722201179811504:1:999.00
-00005002681889123920:2:527.00
-00003102722203019003691:1:6000.00
-00003102722201179803760:1:977.00
-00003102722201179809455:1:897.00
-00003102722201179807498:1:1700.00
-00003102722201179807265:1:1090.00
-00003102722201179807433:1:3480.00
-00003102722201179807433:1:2750.00
-00003102722201179802412:1:1483.00
-00003102722201179808248:1:4874.00
-00003102722203019000104:1:865.00
-00003102722201179803986:1:2015.00
-00003102722201179808623:1:5196.00
-00003102722201179805410:1:986.00
-00003102722201179803444:1:3046.00
-00003102722201179802651:1:4758.00
-00003102722201179808248:1:2956.00
-00003102722201179812441:1:1000.00
-00003102722201179803042:1:621.00
-00003102722201179808954:1:4560.85
-00003102722203019000188:1:28580.00
-00003102722201179801116:1:3260.00
-00003102722201179802411:1:3975.00
-00003102722201179812132:1:684.00
-00003102722201179817866:1:953.00
-00003102722201179817866:1:961.00
-00005002681889117302:2:2549.00
-00003102722201179818641:1:7000.00
-00003102722201179803038:1:1000.00
-00003102722201179817866:1:961.00
-00005002681889117302:2:2549.00
-00005002681889117302:2:2549.00
-00003102722203019003736:1:1000.00
-00003102722201179809129:1:5187.00
-00003102722201179808172:1:5711.00
-00003102722201179809129:1:4983.00
-00003102722201179818641:1:7000.00
-00003102722201179808716:1:4650.00
-00003102722201179803752:1:1000.00
-00003102722201179801731:1:10000.00
-00003102722201179812285:1:3125.00
-00003102722201179813938:1:8763.00
-00003102722201179818641:1:6200.00
-00003102722201179812152:1:31040.00
-00003102722201179813938:1:9623.00
-00003102722201179808585:1:995.00
-00003102722201179805413:1:13000.00
-00003102722201179803068:1:299.00
-00003102722201179803760:1:988.00
-00003102722203019003768:1:1054.00
-00003102722203019003786:1:2878.00
-00003102722201179809148:1:1020.00
-00003102722201179812441:1:1000.00
-00003102722201179807303:1:500.00
-00003102722201179812441:1:1000.00
-00003102722201179801004:1:992.00
-00003102722201179808585:1:995.00
-00003102722201179813198:1:836.00
-00003102722201179800589:1:563.00
-00003102722201179800589:1:574.00
-00003102722201179803068:1:7500.00
-00003102722201179803986:1:950.00
-00003102722201179800589:1:536.00
-00003102722201179800589:1:542.00
-00003102722201179810252:1:300.00
-00003102722201179808638:1:299.00
-00003102722201179812020:1:5135.00
-00003102722201179804872:1:2586.00
-00003102722201179812441:1:1000.00
-00003102722201179806715:1:2242.00
-00003102722203019003691:1:3000.00
-00005002681889123920:2:574.00
-00003102722201179812817:1:3490.00
-00003102722201179812817:1:3958.00
-00003102722201179812817:1:2670.00
-00003102722201179803831:1:9856.00
-00003102722201179807674:1:100.00
-00003102722201179803831:1:19560.00
-00003102722201179812817:1:2290.00
-00003102722201179814223:1:1000.00
-00003102722201179812441:1:1000.00
-00003102722201179806256:1:953.00
-00003202C16289149899:2:3900.00
-00003102722201179812441:1:1000.00
-00003102722203019003735:1:1000.00
-00003102722201179803185:1:1510.00
-00003102722201179803752:1:1000.00
-00003102722201179817418:1:405.00
-00003102722201179818953:1:1000.00
-00003102722201179811419:1:7566.00
-00003102722201179812441:1:1000.00
-00003102722201179801093:1:1000.00
-00003102722201179812441:1:1000.00
-00003102722201179803630:1:450.00
-00003102722201179807265:1:7250.00
-00003102722201179803611:1:791.00
-00003102722201179803611:1:798.00
-00003102722201179801794:1:1781.00
-00003102722201179803611:1:798.00
-00003102722201179804635:1:9499.00
-00003102722201179803986:1:951.00
-00003102722201179808561:1:800.00
-00003102722203019003786:1:1800.00
-00003102722201179801184:1:14800.00
-00003102722203019000133:1:900.88
-00003102722201179808155:1:3670.00
-00003102722203019000133:1:900.00
-00003102722201179812441:1:1000.00
-00003102722203019000133:1:800.00
-00003102722203019000133:1:568.00
-00003102722201179809087:1:3805.00
-00003102722201179812441:1:1000.00
-00003102722201179802722:1:6500.00
-00003102722201179806266:1:21000.00
-00003102722203019000385:1:2623.00
-00003102722201179812441:1:1000.00
-00003102722201179801584:1:2750.00
-00003102722201179801584:1:2116.00
-00003102722201179809422:1:10660.00
-00003102722201179812441:1:1000.00
-00003102722201179801584:1:2575.00
-00003102722201179812777:1:2600.00
-00003102722201179801587:1:2675.00
-00003102722201179801587:1:2846.00
-00003102722201179801587:1:2836.00
-00003102722201179801587:1:1550.00
-00003102722201179812131:1:500.00
-00003102722201179813830:1:6904.35
-00003102722201179806264:1:1000.00
-00003102722201179803151:1:770.00
-00005002681889125023:2:1047.00
-00003102722201179814248:1:991.00
-00003102722201179803752:1:1000.00
-00003102722201179814248:1:1581.00
-00003102722201179808114:1:2528.00
-00003102722201179813102:1:2999.00
-00003102722201179806732:1:1180.00
-00003102722201179813102:1:2999.00
-00003102722201179813102:1:2999.00
-00003102722201179817866:1:999.00
-00003102722201179802630:1:16795.00
-00003102722203019003767:1:3500.00
-00003102722203019003767:1:3590.00
-00003102722203019003767:1:3770.00
-00003102722201179803019:1:1100.00
-00003102722201179803635:1:980.00
-00005002681889120310:2:20955.00
-00003102722201179811909:1:1139.00
-00003102722203019003751:1:6573.00
-00003102722203019003751:1:6319.00
-00003102722201179813462:1:4998.00
-00003102722203019003751:1:5831.00
-00003102722201179813462:1:4980.00
-00003102722201179813462:1:39.98
-00003102722201179813462:1:3980.00
-00003102722201179807808:1:888.00
-00003102722203019000652:1:12000.00
-00003102722201179803723:1:3000.00
-00003102722201179803824:1:2000.00
-00003102722201179803824:1:2000.00
-00003102722201179803824:1:3200.00
-00003102722201179803824:1:100.00
-00003102722201179819003:1:900.00
-00003102722201179803927:1:3999.00
-00003102722203019003786:1:4205.00
-00003102722201179809455:1:797.00
-00003102722201179817787:1:5800.00
-00003102722201179801794:1:3465.00
-00003102722201179809088:1:2900.00
-00003102722201179803986:1:995.00
-00003102722201179803783:1:5030.00
-00003102722201179806261:1:703.00
-00003102722201179806261:1:785.00
-00003102722201179806261:1:723.00
-00003102722201179817865:1:999.00
-00003102722201179817865:1:990.00
-00003102722201179806261:1:1905.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:996.00
-00003102722201179817865:1:996.00
-00003102722201179806261:1:994.00
-00003102722201179807903:1:784.00
-00003102722201179817865:1:998.00
-00003102722201179817865:1:999.00
-00003102722201179817865:1:997.00
-00003102722201179817865:1:996.00
-00003102722201179817865:1:995.00
-00003102722203019000300:1:9200.00
-00003102722201179817865:1:994.00
-00003102722201179808641:1:999.80
-00003102722201179817784:1:13600.00
-00003102722203019000300:1:3000.00
-00003102722201179817784:1:10001.00
-00003102722201179811204:1:980.00
-00003102722201179811204:1:850.00
-00003102722201179807003:1:4799.00
-00003102722201179807003:1:995.00
-00003102722201179811204:1:850.00
-00003102722201179803783:1:5030.00
-00003102722203019002790:1:4803.00
-00003102722203019002547:1:1000.00
-00003102722201179806261:1:989.00
-00003102722201179808825:1:1000.00
-00003102722201179803409:1:275.00
-00003102722201179803409:1:275.00
-00003102722201179813199:1:670.00
-00003102722201179803409:1:275.00
-00003102722201179815706:1:652.00
-00003102722201179803409:1:275.00
-00003102722201179803409:1:275.00
-00003102722201179803409:1:275.00
-00003102722201179803409:1:275.00
-00003102722201179808078:1:7652.00
-00003102722201179807413:1:1457.00
-00003102722201179803409:1:175.00
-00003102722201179803668:1:2394.00
-00003102722201179806261:1:856.00
-00003102722201179811387:1:531.00
-00003102722201179803409:1:175.00
-00003102722201179801116:1:1830.00
-00003102722201179803409:1:275.00
-00003102722201179805152:1:2985.00
-00003102722201179806261:1:695.00
-00003102722201179808941:1:2500.00
-00003102722201179805152:1:2185.00
-00003102722201179806261:1:727.00
-00003102722201179802025:1:7399.50
-00003102722201179808941:1:2000.00
-00003102722201179808616:1:5800.00
-00003102722201179815516:1:1000.00
-00003102722201179815516:1:18000.00
-00003102722201179809499:1:4995.00
-00003102722201179808034:1:4988.00
-00003102722201179802405:1:2865.00
-00003102722201179808638:1:699.00
-00003102722201179801697:1:20000.00
-00003102722201179803752:1:1000.00
-00003102722201179809472:1:725.00
-00003102722201179803551:1:2516.00
-00003102722201179808638:1:299.00
-00003102722201179808638:1:199.00
-00003102722201179803042:1:76.00
-00003102722201179818929:1:1000.00
-00003102722201179803944:1:1000.00
-00003102722203019000468:1:8256.00
-00003102722201179803962:1:996.00
-00003102722201179807266:1:4790.00
-00003102722201179803454:1:2763.94
-00003102722201179808641:1:966.00
-00003102722201179808805:1:1006.00
-00003102722203019004131:1:6428.80
-00003102722201179812687:1:9000.00
-00003102722201179809455:1:109.00
-00003102722201179808641:1:997.80
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179813752:1:6839.00
-00003102722201179818673:1:1000.00
-00003102722201179813752:1:1983.00
-00003102722201179803988:1:1000.00
-00003102722201179813752:1:3876.00
-00003102722203019004131:1:2577.90
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179815782:1:1540.00
-00003102722201179818673:1:1000.00
-00003102722201179815782:1:1315.00
-00003102722201179815782:1:2570.00
-00003102722201179818673:1:1000.00
-00003102722201179815782:1:1985.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179801315:1:14400.00
-00003102722201179812152:1:7990.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179806261:1:727.00
-00003102722201179818673:1:1000.00
-00003102722201179818673:1:1000.00
-00003102722201179801188:1:2950.00
-00003102722201179801315:1:9800.00
-00003102722201179812151:1:913.00
-00003102722201179818673:1:1000.00
-00003102722201179818846:1:25600.00
-00003102722201179812152:1:1000.00
-00005002681889126027:2:1000.00
-00003102722201179818846:1:13500.00
-00003102722201179808357:1:5160.00
-00003102722201179806800:1:4288.00
-00003102722201179818836:1:1000.00
-00003102722201179808767:1:10000.00
-00003102722201179807003:1:5696.00
-00003102722201179812152:1:10000.00
-00003102722203019003961:1:2580.00
-00003102722201179807003:1:857.00
-00003102722203019003961:1:200.00
-00003102722201179803986:1:938.00
-00003102722201179808767:1:3000.00
-00003102722201179806988:1:9946.00
-00003102722201179808767:1:3300.00
-00003102722201179806700:1:966.00
-00003102722201179808767:1:7900.00
-00003102722201179806261:1:998.00
-00003102722203019000878:1:8637.00
-00003102722201179803752:1:1000.00
-00003102722201179812144:1:1130.00
-00003102722201179808767:1:7900.00
-00003102722201179808817:1:3258.00
-00003102722201179806261:1:382.00
-00003102722201179808767:1:7800.00
-00003102722201179806261:1:1325.00
-00003102722201179803944:1:999.00
-00003102722201179800474:1:4756.00
-00003102722201179809478:1:479.00
-00003102722201179810260:1:243.00
-00003102722203019000878:1:4238.00
-00003102722201179804871:1:989.00
-00003102722201179814859:1:1236.00
-00003102722201179809478:1:996.00
-00005002681889120319:2:1000.00
-00005002681889120304:2:4500.00
-00003102722201179815782:1:355.00
-00003102722201179817479:1:1000.00
-00003102722201179815782:1:755.00
-00003102722201179815782:1:355.00
-00003102722201179815782:1:765.00
-00003102722201179803750:1:12950.00
-00003102722201179811400:1:4375.00
-00003102722201179803400:1:1580.00
-00003102722201179818929:1:1000.00
-00003102722201179808402:1:1000.00
-00003102722201179812400:1:1000.00
-00003102722201179806261:1:865.00
-00003102722201179803636:1:1000.00
-00003102722201179804877:1:4039.00
-00003102722201179812292:1:3000.00
-00003102722201179806261:1:1253.00
-00003102722201179812292:1:2000.00
-00003102722201179804877:1:2796.00
-00003102722201179803287:1:4650.00
-00003102722201179818972:1:1000.00
-00003102722201179809455:1:904.00
-00003102722201179817688:1:1000.00
-00003102722201179804877:1:7596.00
-00003102722203019000723:1:8999.00
-00003102722201179804877:1:5986.00
-00003102722201179812172:1:925.00
-00003102722201179801628:1:10000.00
-00003102722201179808856:1:3500.00
-00003102722201179812172:1:339.00
-00003102722201179812172:1:592.00
-00003102722201179801628:1:30000.00
-00003102722201179804877:1:4937.00
-00003102722201179812172:1:128.00
-00003102722201179801628:1:5000.00
-00003102722201179812172:1:318.00
-00003102722203019000813:1:8868.00
-00003102722201179803750:1:10180.00
-00003102722201179812172:1:200.00
-00003102722201179803099:1:998.00
-00003102722201179812172:1:551.00
-00003102722203019000806:1:7260.00
-00003102722201179807918:1:24567.00
-00003102722201179817479:1:10.00
-00003102722203019002790:1:5060.00
-00003102722201179812172:1:864.00
-00003102722201179802038:1:1429.00
-00003102722201179817444:1:10000.00
-00003102722201179803099:1:5600.00
-00003102722201179812172:1:507.00
-00003102722201179801650:1:12500.00
-00003102722201179812172:1:188.00
-00003102722201179804877:1:3869.00
-00003102722201179817479:1:500.00
-00003102722201179812172:1:347.00
-00003102722201179805427:1:3644.00
-00003102722201179812172:1:529.00
-00003102722201179817479:1:500.00
-00003102722201179812172:1:209.00
-00003102722201179803944:1:998.00
-00003102722201179809499:1:893.00
-00003102722201179817479:1:1000.00
-00003102722203019000723:1:865.00
-00003102722201179809499:1:893.00
-00003102722201179804767:1:781.00
-00003102722201179809499:1:893.00
-00003102722201179808750:1:3270.00
-00003102722201179803444:1:2014.00
-00003102722201179805434:1:6853.00
-00003102722201179803444:1:3188.00
-00003102722201179807000:1:6545.00
-00003102722201179807000:1:2654.00
-00003102722201179807431:1:5900.00
-00003102722201179806256:1:949.00
-00003102722201179806261:1:989.00
-00003102722201179803794:1:999.80
-00003102722201179803794:1:995.00
-00003102722201179810201:1:3260.00
-00003102722201179803794:1:998.80
-00003102722201179806261:1:1334.00
-00003102722201179808641:1:966.60
-00003102722201179807753:1:2652.00
-00003102722203019004136:1:3855.00
-00005002681889126016:2:5248.00
-00003102722201179803981:1:997.00
-00003102722203019000455:1:16995.00
-00003102722201179802036:1:3500.00
-00003102722201179808641:1:996.00
-00003102722201179803794:1:999.50
-00003102722201179802693:1:15000.00
-00003102722201179803794:1:995.00
-00003102722201179803981:1:994.00
-00003102722201179803063:1:2509.00
-00003102722201179803794:1:996.00
-00003102722201179803794:1:998.00
-00003102722201179803981:1:992.00
-00003102722201179802651:1:4858.00
-00003102722201179802693:1:18200.00
-00003102722201179812032:1:2648.00
-00005002681889123918:2:9100.00
-00003102722201179807003:1:1497.00
-00003102722201179812032:1:2875.00
-00003102722201179812032:1:2935.00
-00003102722201179803752:1:1000.00
-00003102722201179806265:1:1000.00
-00003102722201179808824:1:2860.00
-00003102722201179805444:1:995.00
-00003102722201179812032:1:984.00
-00003102722203019003691:1:9800.00
-00003102722201179810283:1:992.00
-00005002681889126016:2:2000.00
-00005002681889126016:2:1000.00
-00003102722201179808480:1:5257.00
-00003102722201179818631:1:1000.00
-00003102722201179803760:1:13200.00
-00003102722203019000189:1:1100.00
-00003102722201179808416:1:3120.00
-00005002681889126016:2:999.00
-00003102722201179808259:1:8110.00
-00003102722201179805192:1:985.00
-00003102722201179806711:1:12874.00
-00003102722201179816153:1:1029.00
-00003102722203019000395:1:14337.00
-00003102722201179808598:1:1000.00
-00003102722201179806249:1:2985.00
-00003102722201179812157:1:3221.00
-00003102722201179811481:1:4850.00
-00003102722201179803733:1:927.00
-00003102722201179817700:1:32500.00
-00003102722203019003868:1:3987.00
-00003102722201179803299:1:2570.00
-00003102722203019001107:1:1000.00
-00003102722201179812068:1:999.00
-00003102722201179803299:1:8970.00
-00003102722201179811481:1:4550.00
-00003102722203019001107:1:1259.00
-00003102722201179809455:1:897.00
-00003102722203019001107:1:11256.00
-00003102722201179803299:1:2980.00
-00003102722201179812159:1:5000.00
-00005002681889123761:2:4095.00
-00003102722201179803916:1:600.00
-00003102722201179810283:1:996.00
-00003102722201179803299:1:4910.00
-00005002681889123761:2:3726.00
-00003102722201179813461:1:3528.00
-00003102722201179803299:1:4270.00
-00003102722201179807969:1:206.00
-00003102722201179807969:1:98.00
-00003102722201179801703:1:12427.00
-00003102722203019003755:1:1995.00
-00003102722201179803916:1:400.01
-00003102722201179807969:1:473.00
-00003102722201179801780:1:1000.00
-00003102722201179803944:1:1000.00
-00003102722201179802193:1:961.00
-00003102722201179802005:1:9876.59
-00003102722201179802193:1:972.00
-00003102722201179806240:1:1000.00
-00003102722201179802005:1:9875.69
-00003102722201179807301:1:979.00

+ 0 - 361
bin/Debug/netcoreapp3.0/log/补充商户数据/2022/4/6/content.log

@@ -1,361 +0,0 @@
-M700019291K879BoR3
-M700082141K89ziwS0
-84333295970000C
-M700082711K8DQZ3y7
-8437010472200D9
-M700030201K8GGYd78
-M900065161K8GM34i3
-84314805499002H
-M900019161K8I2pVY7
-M700082181K8J2RGL7
-M700065151K8LjLgQ3
-M700042831K8MdzUX3
-M900058541K8N5C0B5
-8436580581200CK
-84370507997002Y
-84364205811000R
-M900069111K8eM0JM5
-84364205811000S
-8436580581200CL
-M700019111KBFYmPo0
-M700055131KBIAitG2
-84366115655000B
-M700017711KBKwcK60
-M700020611KBLvda96
-M700016731KBMn0P61
-M700033391KBQXMzj6
-M700019181KBSBfBp7
-M700066531KBTEpmM8
-M900042831KBTL9u40
-M700019181KBTcTib7
-M700068831KBUE99X1
-M900020741KBWgl1y4
-84365805422001U
-M700019111KBYWboO0
-M700019111KBaPjJR0
-84312174722000G
-84365805533001E
-84345207829004X
-M900056391KBbqqDy3
-M700068831KBbtJOr3
-M700020611KBcR7Ld4
-M900019161KBcXTL41
-84366115621000B
-M700045271KBdbS0h6
-M900022271KBfAGI58
-M900019111KBftKRk2
-M900065841KBhwOuI3
-M700082711KBhys567
-M700033251KBi6IOw7
-M700022271KBjP8mS9
-M900079111KBkopmf8
-M900042831KBkzr4T1
-84356395811000A
-M700019181KBnMhSD7
-M700019161KBopytM5
-M900082201KBoqY3Z5
-84370305999003X
-M700056631KBpCW6T4
-8436510561100II
-8434520422500GC
-84346125441000V
-M700069181KBua4Qa6
-84369325811000A
-M900019111KBvWfB68
-M700068411KBvamuW7
-84369074722000X
-M900060301KBwyJee9
-M900064141KBxoGpc5
-M900033511KByMuC91
-M700022271KByenhp1
-M700045291KBysovy8
-84366115655000C
-84369005137018A
-M900039311KC2qMXi8
-84369245499000G
-M700019161KC4bGyW9
-M900064141KC4jmQU9
-M700019161KC4rEc32
-84365155310000A
-M700047331KC6ceDE1
-M900020611KC7R01h7
-84369325621000A
-84365144722000W
-84347315977000Y
-M700033391KCBt4b44
-84369325533000A
-M900019191KCCm32u5
-M700014811KCFujfn2
-M700019161KCGinuF5
-M900033251KCI4eUU7
-84369325399000W
-M900020611KCJ8NBB7
-M700062481KCJKUvh8
-M700037731KCJeZlc8
-M700065131KCKXZY03
-84369325411000D
-M900065151KCLbYUS7
-M700065801KCMyGLh7
-84369005812062U
-M700019161KCP0BPs5
-M700065121KCP5frZ7
-M700022281KCSNBv13
-M700033351KCSf2Uy4
-M700017741KCUGKDh7
-M900070171KCUrRp38
-8432610581100K3
-M900017771KCVzpoG2
-M700087161KCWFWOj0
-M700022271KCWbn5k6
-8436900501301DM
-84369057991000A
-84369177991000B
-M900017771KCaA3Gf5
-M900079181KCaiP320
-M900064241KCarkyg6
-M700042811KCcUyZd3
-M700019631KCckusS7
-8432610581100K4
-M900019161KCd036M6
-M900069111KCfmyzz7
-8432220581203PY
-M700069121KCgO7vw3
-M900079721KCiaFPa5
-M900056391KCiniXS3
-84345207998005F
-84365805411000W
-M900039941KCkFuJZ5
-M700022271KCehM258
-M700061131KCknSXy9
-M900064251KCm3XN33
-M900042831KCmUmHQ7
-M700052381KCmnTbW6
-M700052341KCnCVaU2
-M900080611KCnfNis5
-8434520422500GD
-84346125422000N
-M700047421KCqZBqK5
-M900019161KCqp8wi5
-84345405970003W
-M900064121KCr9lLd2
-M900039341KCrFpkw9
-M700060301KCsSMHA7
-M700020611KCsZVY52
-M700065831KCt73mT0
-M700022251KCu7BVC6
-M700069181KCuLltT2
-84365805994001O
-84365807996001U
-M700069111KCvx1DW6
-84366507298003N
-M700019211KCxe5ES6
-M900073251KCy1S7d5
-M700065811KCyFDMt8
-84365165441000G
-84350235045000B
-84366105532000G
-M700069181KD0FEQN2
-M900023711KD0cIfR3
-M900019111KD3DRKZ5
-M900042831KD3UDZr0
-84326355411000K
-84314304722006S
-M700019181KD3jduk0
-M700046681KD3rsa94
-M700040611KD4O2VM5
-M900046111KD4diIE6
-84366105655000N
-M900022271KD6Zu010
-M900033871KD8oTa43
-M700079181KD8vLnt1
-M900080611KD9TzhQ4
-M700019181KD9a4NG0
-M900022251KDBMKSC1
-M900019181KDCtCKI9
-M700020461KDDFCVU0
-M700047311KDDhmnE3
-M900019161KDDqrPH7
-8436900581302EA
-8437910481600GA
-84353505072001S
-84314304722006T
-M700033361KDEL73S3
-8432610581100K6
-M700019191KDFEN5G3
-M700019181KDFZI8I5
-M900065841KDIiED70
-M700020521KDJqdWr7
-M700062481KDKnV413
-84369005812062V
-M700046221KDNuEkL2
-84314804458000S
-M700033361KDOP1xT4
-84365805399003D
-M900065861KDQgwGF5
-M900065251KDRDwfE8
-M700042811KDTYJ4U7
-M700016601KDTtTpx1
-84369245499000H
-M700045411KDVRAat2
-M700033231KDW6xE16
-M700045551KDXRCBI7
-M700070561KDXz1Ss7
-M700033441KDYRt440
-M700019291KDZiG0N9
-M700020521KDbBGvV7
-M700065901KDbHs6F4
-M900019191KDbqFDI0
-M700019111KDdK4kS4
-M700019161KDdbwf38
-M900020611KDeigt65
-M700019111KDexZ831
-M700020611KDg8Pkw5
-M700079191KDhat734
-M700065981KDkW7PN3
-8437910581301CT
-M700023711KDquvFS1
-M900019111KDtLrlZ2
-M900020611KDw6LYY5
-M900082621KE00cyW8
-M900064121KE5O9y41
-M700069111KE5pwRT0
-M900064251KE61msL4
-M900033251KE6cM784
-M700020521KE6twyj3
-M700020741KEA0AAE1
-M700023711KEBm8Of9
-M900013821KEC3ToC7
-84370104131001P
-84322205499011U
-M700023711KEJsY539
-M700065861KEOTPwy3
-M700079181KETc8AK1
-M700020611KEXnyqo7
-M700019181KEa8MKG5
-M900019241KEaTn4i0
-84369065045000J
-8435630701100GV
-M900082751KEgeakj2
-M700065861KEuSria3
-M700020521KHBqlqy7
-M700020521KHF3pfE0
-M700014881KHH49dR2
-M700020521KHJQRea7
-M900033441KHPDHwg4
-M700070231KHPO0aQ0
-M700033171KHQTNZI2
-M900022281KHWszUY4
-8437910505100LW
-84369115813001V
-M700067611KHaRopM8
-M700045551KHad5ZA2
-M900019111KHb581R6
-M900033351KHbbJHG4
-M900019181KHcY8wg7
-M700065251KHcqZDq6
-M700019151KHfj1xj5
-84365907011007Y
-84365267993000K
-M700019111KHhQvOD0
-M900023531KHj0onh3
-M700065251KHjMXfG6
-M700019631KHkVUHY7
-8436710581200BS
-M900020611KHlsRrY9
-M900047321KHmArsB6
-84366115611000B
-M900020741KHnsCP47
-84365255021000P
-M700045551KHp656f4
-M900042831KHqDdwa7
-M900037731KHqJgkj0
-M900069071KHrOEr35
-M700069391KHrouKg5
-84347435499000I
-M700067611KHsBCMR8
-M700068841KHv68XZ8
-M700045551KHvnaGe7
-M900037731KHxJ4tc4
-M700069111KHxjTam5
-M900065131KHyA9bP4
-84366115655000D
-M700065861KI0HJvl3
-84365835065000C
-M700069111KI1jWEq6
-M700067611KI1ziGB9
-M700019241KI3UwN74
-M700019111KI4x9kG3
-M700069181KI5CGdU7
-84366115661000A
-84365805065001O
-84369395462000D
-M900080691KI8Kf9E0
-M700017761KI9Qt8z6
-M900019161KI9rHpy6
-M700069181KIAlvuc2
-M900047311KIBHY0I5
-M700065811KIBY1s87
-M700046181KIBfSC29
-8434730799700FK
-M700065121KIG22qn6
-84365835065000D
-M900070181KIHDTAy6
-84346125441000W
-M700065861KIKlzrk3
-M700069181KILwKWm2
-M700022271KIMAMI23
-M900033361KIMN0Gu5
-M700022251KIMm2Fv1
-M900069071KINYyQa2
-M900082621KIO5giP3
-M900070181KIOWvM84
-84366905814000O
-M700065261KIP5Xv79
-84312175812006G
-M700065241KISgIbS5
-84333367911000D
-M700058191KITPxWE1
-M900069071KIUUl4T6
-M700049131KIUd0Gx5
-M700071231KIUeeZ67
-M900064101KIWsh7K8
-M900034311KIYzsmH1
-M900019151KIZdSkq6
-M700022201KIaKdQy4
-M900069091KIagMpV4
-M900070181KIbqwfw6
-M700069421KIc5FU82
-M900037731KIcVwIM0
-8437910552100Y1
-8437910599801XA
-84377185441000C
-M700069111KIdved83
-M900070231KIe0tMH2
-8436900573300U6
-8434730581300AZ
-M700019111KIfANH77
-M700067611KIfG9Iq7
-M700069421KIfOPZK9
-M700019151KIg1jYx5
-M700056631KIg83ge9
-M700032221KIgJJ5v2
-M700069411KIhlnFb8
-M900069231KIiIVXP0
-M900073721KIixByc9
-M700082131KIk5cMT7
-8432220581203PZ
-84347305131007R
-M900070191KInzZnk7
-M700019111KIo4Wwr4
-84345207829004Y
-M900082621KIoX7VA5
-M700058841KIpaZ8r1
-M900069071KIqPiEt2
-M700020311KIrEaYM4
-M700019251KIrkDB49
-M700022281KIrsjQZ2
-84314825811000B
-84369145499000H
-84379727932000A
-M700070171KIvOnTe3
-M900030561KIwDPoB4

+ 0 - 360
bin/Debug/netcoreapp3.0/log/补充绑定数据/2022/4/6/content.log

@@ -1,360 +0,0 @@
-00003102722201179804975
-00005002681889120977
-00003102722201179813251
-00003202C16289133065
-00003102722201179803571
-00000302JBNL01471750
-00003202C16289131580
-00000302JBNL01465743
-00003102722201179808121
-00003102722201179807257
-00003102722201179813345
-00000302JBNL01470069
-00005002681889124281
-00005002681889118159
-00005002681889125195
-00000302JBNL01467648
-00005002681889125192
-00005002681889124252
-00003102722203019003582
-00003102722201179811610
-00005002681889123532
-00003102722201179802888
-00003102722203019002640
-00003102722201179807015
-00003102722201179807362
-00003102722201179810220
-00003102722201179811605
-00000302JBNL01470127
-00003102722201179809429
-00003102722201179800660
-00000302JBNL01464721
-00005002681889123555
-00003102722201179809795
-00003102722201179812224
-00005002681889117887
-00005002681889124068
-00003202C16289131847
-00000302JBNL01462469
-00003102722201179800647
-00003102722201179810328
-00000302JBNL01465723
-00005002681889123541
-00003102722201179806149
-00000302JBNL01463982
-00000302JBNL01464549
-00000302JBNL01470689
-00003102722201179813248
-00003102722203019000165
-00003102722203019001006
-00000302JBNL01469543
-00000302JBNL01470118
-00005002681889117313
-00003102722201179809493
-00003102722201179817864
-00000302JBNL01471155
-00003202C16289132650
-00003102722203019000107
-00005002681889119270
-00003202C16289131842
-00003202C16289130823
-00003102722203019000296
-00005002681889125875
-00000302JBNL01464548
-00003102722203019003846
-00005002681889126088
-00000302JBNL01470883
-00000302JBNL01472009
-00000302JBNL01470532
-00003102722203019001098
-00003102722201179817804
-00005002681889123538
-00005002681889125910
-00000302JBNL01469091
-00005002681889126982
-00003102722203019002784
-00000302JBNL01471970
-00003102722201179809427
-00005002681889124120
-00003102722201179805448
-00000302JBNL01464564
-00005002681889125601
-00005002681889118954
-00003202C16289131396
-00003102722201179807352
-00005002681889125606
-00000302JBNL01466572
-00003102722201179815584
-00003102722203019003458
-00000302JBNL01470450
-00005002681889125898
-00000302JBNL01465427
-00003102722203019003878
-00003102722201179802229
-00003102722201179811634
-00005002681889125612
-00000302JBNL01471146
-00003102722203019004071
-00005002681889126715
-00003102722203019003457
-00003102722201179809173
-00003102722203019001114
-00003102722201179814458
-00003102722201179812585
-00000302JBNL01469685
-00005002681889125184
-00000302JBNL01470433
-00003102722201179807649
-00003102722203019001194
-00005002681889125682
-00005002681889125086
-00005002681889126050
-00000302JBNL01470427
-00000302JBNL01469536
-00000302JBNL01472033
-00003102722201179802050
-00003102722201179806574
-00005002681889125181
-00000302JBNL01465109
-00000302JBNL01468358
-00003202C16289149637
-00003102722203019000708
-00000302JBNL01471142
-00000302JBNL01462467
-00003202C16289131848
-00005002681889123921
-00000302JBNL01469085
-00003102722203019001070
-00003102722201179801998
-00000302JBNL01472028
-00000302JBNL01469784
-00003102722201179801644
-00003102722201179801634
-00000302JBNL01469369
-00003202C16289131843
-00003202C16289130827
-00003102722201179805616
-00000302JBNL01464826
-00005002681889120952
-00000302JBNL01472000
-00000302JBNL01468782
-00003102722201179809066
-00003102722203019002877
-00003102722203019003920
-00003102722203019001045
-00003102722203019000279
-00005002681889124118
-00005002681889123529
-00003102722201179808593
-00005002681889123725
-00003102722201179806414
-00000302JBNL01469840
-00003102722201179808752
-00005002681889124034
-00005002681889124189
-00005002681889123540
-00003102722203019000609
-00000302JBNL01463851
-00000302JBNL01465140
-00000302JBNL01469788
-00005002681889125194
-00005002681889117885
-00003102722201179810329
-00003102722201179816801
-00003102722201179813780
-00000302JBNL01467159
-00005002681889123531
-00000302JBNL01463933
-00000302JBNL01462182
-00003102722201179807553
-00000302JBNL01469396
-00003102722201179809901
-00000302JBNL01463615
-00000302JBNL01464825
-00003102722201179806344
-00003102722201179805636
-00000302JBNL01465962
-00005002681889125048
-00005002681889119374
-00005002681889124199
-00005002681889117649
-00003102722201179814474
-00005002681889125186
-00003102722201179806361
-00003102722201179809430
-00000302JBNL01470908
-00003102722203019002712
-00003102722203019003650
-00005002681889125049
-00003102722201179816091
-00003202C16289131591
-00003102722201179814490
-00005002681889123701
-00000302JBNL01470802
-00000302JBNL01471784
-00003102722201179813334
-00003102722201179806886
-00005002681889126983
-00003102722201179805161
-00003102722203019000163
-00003102722201179816683
-00003102722201179807857
-00003102722201179814466
-00003102722203019002586
-00003102722203019002716
-00003102722201179813053
-00000302JBNL01465534
-00003102722203019002898
-00003102722201179810068
-00000302JBNL01465960
-00003102722203019002751
-00003102722201179809822
-00003102722201179803023
-00003102722201179812290
-00005002681889119373
-00003102722203019001166
-00000302JBNL01465426
-00000302JBNL01465719
-00000302JBNL01471415
-00000302JBNL01471966
-00003102722201179808477
-00000302JBNL01472014
-00000302JBNL01470471
-00003102722203019002720
-00003102722203019002406
-00003102722203019001163
-00000302JBNL01465111
-00003202C16289133275
-00003202C16289149631
-00003102722203019001164
-00003102722203019004081
-00003102722201179807550
-00003102722201179803913
-00003102722201179812936
-00000302JBNL01464642
-00005002681889125634
-00005002681889117309
-00000302JBNL01471340
-00003102722201179808734
-00003102722203019002714
-00003102722203019002718
-00003102722201179815746
-00003102722203019002719
-00000302JBNL01462130
-00003102722201179811366
-00003102722201179813477
-00000302JBNL01463635
-00005002681889118982
-00005002681889125460
-00003102722201179808119
-00003102722201179816684
-00000302JBNL01465407
-00000302JBNL01462096
-00000302JBNL01465721
-00003102722201179802729
-00003102722201179809996
-00005002681889119902
-00005002681889123866
-00003102722201179818755
-00000302JBNL01463861
-00003102722201179812548
-00003102722201179804085
-00005002681889118206
-00000302JBNL01465752
-00000302JBNL01465863
-00005002681889123535
-00000302JBNL01464720
-00005002681889119282
-00003102722201179816692
-00000302JBNL01470096
-00000302JBNL01468569
-00000302JBNL01467814
-00003102722201179808008
-00003202C16289131313
-00003102722201179808349
-00003102722201179812393
-00003102722201179816691
-00000302JBNL01468572
-00003102722203019000756
-00000302JBNL01471930
-00005002681889123533
-00003102722203019004075
-00005002681889124271
-00003102722201179808068
-00003102722201179808348
-00003102722201179818882
-00003102722201179817852
-00003102722203019000277
-00005002681889123542
-00005002681889124272
-00005002681889118835
-00000302JBNL01469413
-00003102722201179803116
-00000302JBNL01465720
-00003102722203019000278
-00000302JBNL01465859
-00003102722201179808875
-00003102722201179804736
-00003202C16289131314
-00003102722203019004089
-00005002681889124273
-00000302JBNL01469707
-00003202C16289130821
-00003102722203019004178
-00003102722203019000274
-00003102722203019001081
-00000302JBNL01462244
-00003102722203019001087
-00000302JBNL01468069
-00000302JBNL01471066
-00000302JBNL01469709
-00005002681889126042
-00003102722203019004157
-00005002681889117648
-00003102722203019003765
-00005002681889117534
-00003102722201179813806
-00000302JBNL01468068
-00003102722201179804563
-00003102722201179811925
-00000302JBNL01471964
-00000302JBNL01470451
-00000302JBNL01465735
-00003102722203019001080
-00000302JBNL01468354
-00000302JBNL01469710
-00003102722201179808329
-00000302JBNL01468573
-00005002681889119365
-00005002681889118998
-00005002681889116695
-00003102722201179808490
-00000302JBNL01469658
-00005002681889125932
-00003202C16289131315
-00003102722203019002828
-00003102722201179808344
-00003102722201179808320
-00003102722201179809995
-00003102722201179811524
-00003102722201179813574
-00003102722201179807986
-00000302JBNL01467605
-00000302JBNL01469867
-00003102722201179811819
-00003202C16289149634
-00003202C16289131318
-00000302JBNL01469743
-00003102722201179809797
-00003202C16289131845
-00000302JBNL01471065
-00003102722201179808718
-00000302JBNL01468070
-00003102722201179819054
-00003102722203019002715
-00003102722203019001043
-00003202C16289131551
-00005002681889125068
-00005002681889119943
-00003102722201179807144
-00000302JBNL01470211

BIN
bin/release/netcoreapp3.0/MySystem.dll


BIN
bin/release/netcoreapp3.0/MySystem.pdb


BIN
obj/Debug/netcoreapp3.0/MySystem.dll


BIN
obj/Debug/netcoreapp3.0/MySystem.pdb


BIN
obj/release/netcoreapp3.0/MySystem.dll


BIN
obj/release/netcoreapp3.0/MySystem.pdb