From b61b657eea75b0a195082c3513707d485d9e83d7 Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期五, 21 十二月 2018 21:11:57 +0800 Subject: [PATCH] 5539 【后端】【1.4】聚魂副本怪物和守卫成长支持新的成长公式 --- db/PyMongoDataServer/PySysDB/tagNPCStrengthen.txt | 262 ++++++++++++++++++++++++++-------------------------- ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.pyc | 0 ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.pyc | 0 ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig/NPCLogic/NPCAttrStrengthen.txt | 15 +++ ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGatherSoul.pyc | 0 5 files changed, 146 insertions(+), 131 deletions(-) diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig/NPCLogic/NPCAttrStrengthen.txt b/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig/NPCLogic/NPCAttrStrengthen.txt index 07b66a6..4abdfa0 100644 --- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig/NPCLogic/NPCAttrStrengthen.txt +++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig/NPCLogic/NPCAttrStrengthen.txt @@ -47,6 +47,7 @@ }, # 等级成长属性公式 +{0: [ ["Hit","0.95*ReMiss/(1-HitRate/10000.0)-ReMiss"], ["Miss","ReHit*MissRate/10000.0/(0.95-MissRate/10000.0)"], @@ -59,6 +60,20 @@ ["MaxHP","((ReAtk-Def*(1-ReIgnoreDefRate/10000.0))*ReSkillAtkRate/10000.0*(1+ReDamagePer/10000.0)*(1-ReLuckyHitRate/10000.0+ReLuckyHitRate/10000.0*(1.2+ReLuckyHit/10000.0))+max((RePetAtk-Def)*(1+RePetDamPer/10000.0)*RePetSkillAtkRate/10000.0,0)+max((ReIceAtk-IceDef)*ReSkillAtkRate/10000.0*(1+ReDamagePer/10000.0)*(1-ReLuckyHitRate/10000.0+ReLuckyHitRate/10000.0*(1.2+ReLuckyHit/10000.0)),0)+ReFinalHurt)*HitTime/100.0*math.sqrt((ReAtkSpeed+10000)/10000.0)+(ReAtk-Def*(1-ReIgnoreDefRate/10000.0))*ReBleedDamage/10000.0*(1+ReDamagePer/10000.0)*(1-ReLuckyHitRate/10000.0+ReLuckyHitRate/10000.0*(1.2+ReLuckyHit/10000.0))*HitTime/100.0"], ], +1: +[ + ["Hit","0.95*ReMiss/(1-HitRate/10000.0)-ReMiss"], + ["Miss","ReHit*MissRate/10000.0/(0.95-MissRate/10000.0)"], + ["IceAtk","IceAtkCoefficient/10000.0*ReIceAtk"], + ["IceDef","IceDefCoefficient/10000.0*ReIceDef"], + ["MinAtk","DefCoefficient/10000.0*ReDef+AtkReplyCoefficient"], + ["MaxAtk","DefCoefficient/10000.0*ReDef+AtkReplyCoefficient"], + ["Def","ReAtk*AtkCoefficient/10000.0"], + ["FireAtk","(RePotionReply/(RePotionCD*1.0)+LostHPPerSecond)/(MonterNum*1.0)*(1-AdjustCoefficient/10000.0)*AtkInterval/(1+SkillAtkRate/10000.0)+ReFinalHurtReduce/(MonterNum*1.0)*AtkInterval"], + ["MaxHP","((ReAtk-Def*(1-ReIgnoreDefRate/10000.0))*ReSkillAtkRate/10000.0*(1+ReDamagePer/10000.0)*(1-ReLuckyHitRate/10000.0+ReLuckyHitRate/10000.0*(1.2+ReLuckyHit/10000.0))+max((RePetAtk-Def)*(1+RePetDamPer/10000.0)*RePetSkillAtkRate/10000.0,0)+max((ReIceAtk-IceDef)*ReSkillAtkRate/10000.0*(1+ReDamagePer/10000.0)*(1-ReLuckyHitRate/10000.0+ReLuckyHitRate/10000.0*(1.2+ReLuckyHit/10000.0)),0)+ReFinalHurt)*HitTime/100.0*math.sqrt((ReAtkSpeed+10000)/10000.0)+(ReAtk-Def*(1-ReIgnoreDefRate/10000.0))*ReBleedDamage/10000.0*(1+ReDamagePer/10000.0)*(1-ReLuckyHitRate/10000.0+ReLuckyHitRate/10000.0*(1.2+ReLuckyHit/10000.0))*HitTime/100.0"], + +], +}, # 地图人数对应属性额外成长系数 {mapID:{"属性名":{组队进入人数:系数, ...}, ...}, ...} 或 {mapID:{"属性名":"人数成长系数公式", ...}, ...} # key支持两个格式:1-直接配,2-范围用小括号(min,max); 公式人数参数名: strengthenPlayerCnt diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.pyc index 34808fa..9f8cc01 100644 --- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.pyc +++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.pyc Binary files differ diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.pyc index f60f1d6..c03aaa7 100644 --- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.pyc +++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.pyc Binary files differ diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGatherSoul.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGatherSoul.pyc index 6d77e57..c376ae0 100644 --- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGatherSoul.pyc +++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGatherSoul.pyc Binary files differ diff --git a/db/PyMongoDataServer/PySysDB/tagNPCStrengthen.txt b/db/PyMongoDataServer/PySysDB/tagNPCStrengthen.txt index ec62d07..0eda2d8 100644 --- a/db/PyMongoDataServer/PySysDB/tagNPCStrengthen.txt +++ b/db/PyMongoDataServer/PySysDB/tagNPCStrengthen.txt @@ -1,131 +1,131 @@ -MonterID IsStrengthenByPlayerCount LVStrengthenType CmpNPCBaseLV HitTime DefCoefficient AtkCoefficient AdjustCoefficient AtkInterval HitRate MissRate MonterNum IceAtkCoefficient IceDefCoefficient MaxEnduranceTime FightPowerCoefficient -30801001 0 1 0 225 3000 0 8000 2 9900 50 20 0 0 0 0 -30801002 0 1 0 250 4000 0 8000 2 9900 50 20 0 0 0 0 -30801003 0 1 0 275 5000 0 8000 2 9900 50 20 0 0 0 0 -30102001 0 1 0 125 6000 0 8000 2 9990 50 20 0 0 0 0 -30102002 0 1 0 275 6000 0 8000 2 9990 50 20 0 0 0 0 -30102003 0 1 0 850 6000 0 8000 2 9990 50 20 0 0 0 0 -30102004 0 1 0 4500 6000 0 8000 2 9990 0 1 0 0 225 0 -30102005 0 1 0 4500 6000 0 8000 2 9990 0 1 0 0 225 0 -30102006 0 1 0 600 6000 0 8000 2 9990 0 1 0 0 225 0 -30102007 0 1 0 600 6000 1500 8000 2 9990 0 20 0 0 60 0 -30102008 0 1 0 350 8000 0 8000 2 9990 0 1 0 0 60 0 -30102009 0 1 0 475 6000 0 8000 2 9990 0 20 0 0 0 0 -30102010 0 1 0 375 6000 0 8000 2 9990 0 20 0 0 0 0 -30102011 0 1 0 285 6000 0 8000 2 9990 0 20 0 0 0 0 -30102012 0 1 0 475 6000 0 8000 2 9990 0 3 0 0 0 0 -31401001 0 1 0 1000 10000 0 8000 2 9900 50 12 0 0 0 0 -31403001 0 1 0 1200 10000 0 8000 2 9900 50 2 0 0 0 0 -31001001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001009 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001010 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001011 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31001012 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31003008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31801001 1 1 0 2700 10000 0 8000 2 9990 0 6 0 0 0 0 -31801002 1 1 0 2700 10000 0 8000 2 9990 0 2 0 0 120 0 -31801003 1 1 0 2700 10000 0 8000 2 9990 0 2 0 0 120 0 -31801004 1 1 0 4000 10000 0 8000 2 9990 0 6 0 0 0 0 -31801005 1 1 0 4000 10000 0 8000 2 9990 0 2 0 0 120 0 -31801006 1 1 0 4000 10000 0 8000 2 9990 0 2 0 0 120 0 -31803001 1 1 0 14500 10000 0 8000 2 9990 0 1 0 0 240 0 -31803002 1 1 0 14500 10000 0 8000 2 9990 0 3 0 0 160 0 -31803003 1 1 0 14500 10000 0 8000 2 9990 0 1 0 0 450 0 -31803004 1 1 0 14500 10000 0 8000 2 9990 0 1 0 0 960 0 -31803005 1 1 0 14500 10000 0 8000 2 9990 0 1 0 0 960 0 -31701000 1 1 0 100 0 0 8000 2 9990 50 10 0 0 0 0 -31701001 1 1 0 200 10000 0 6000 2 9990 50 10 0 0 0 0 -31701002 1 1 0 400 10000 0 6000 2 9990 50 10 0 0 0 0 -31701003 1 1 0 500 10000 0 6000 2 9990 50 10 0 0 0 0 -31702002 1 1 0 600 10000 0 8000 2 9990 50 1 0 0 120 0 -31701004 1 1 0 1200 10000 0 6000 2 9990 50 10 0 0 0 0 -31701005 1 1 0 1500 10000 0 6000 2 9990 50 10 0 0 0 0 -31702003 1 1 0 1600 10000 0 8000 2 9990 50 1 0 0 120 0 -31703001 1 1 0 5000 10000 0 8000 2 9990 50 1 0 0 120 0 -31703002 1 1 0 6000 10000 0 8000 2 9990 50 1 0 0 120 0 -31703003 1 1 0 9000 10000 0 8000 2 9990 50 1 0 0 110 0 -31703004 1 1 0 14000 10000 0 8000 2 9990 50 1 0 0 100 0 -31701006 1 1 0 2000 10000 0 6000 2 9990 50 10 0 0 0 0 -31701007 1 1 0 2000 10000 0 6000 2 9990 50 10 0 0 0 0 -31702001 1 1 0 2000 10000 1000 8000 2 9990 50 1 0 0 180 0 -31704001 0 1 0 12000 100000 0 0 2 9990 50 1 0 0 0 0 -31704002 0 1 0 12000 100000 0 0 2 9990 50 1 0 0 0 0 -31704003 0 1 0 40000 150000 0 0 2 9990 50 1 0 0 0 0 -30403001 0 1 0 1000 10000 0 8000 2 9900 50 12 0 0 0 0 -30403002 0 1 0 1000 10000 0 8000 2 9900 50 12 0 0 0 4000 -30403003 0 1 0 1200 10000 0 8000 2 9900 50 2 0 0 0 15000 -30403004 0 1 0 1200 10000 0 8000 2 9900 50 2 0 0 0 22000 -30903001 1 3 0 48000 10000 0 8000 2 9900 50 1 0 0 120 0 -30601001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30603001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30603002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30603003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601009 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30601010 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30603004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -61203008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -50103001 1 3 1 232800 10000 0 8000 2 9900 50 1 0 0 1311 0 -50103002 1 3 1 251400 10000 0 8000 2 9900 50 1 0 0 1238 0 -50103003 1 3 1 279300 10000 0 8000 2 9900 50 1 0 0 1165 0 -50103004 1 3 1 325900 10000 0 8000 2 9900 50 1 0 0 1092 0 -50103005 1 3 1 372500 10000 0 8000 2 9900 50 1 0 0 1020 0 -50103006 1 3 1 419000 10000 0 8000 2 9900 50 1 0 0 947 0 -50103007 1 3 1 465600 10000 0 8000 2 9900 50 1 0 0 874 0 -31401002 0 2 0 2400 10000 0 8000 3 9900 50 24 0 0 0 0 -31403002 0 2 0 5800 10000 0 8000 3 9900 50 1 0 0 50 0 -31401003 0 2 0 800 10000 0 8000 3 9900 50 24 0 0 0 0 -31403003 0 2 0 5500 10000 0 8000 3 9900 50 1 0 0 50 0 -31401004 0 2 0 800 10000 1000 8000 3 9900 50 12 0 0 0 0 -31403004 0 2 0 2200 10000 0 8000 3 9900 50 1 0 0 50 0 -31401005 0 2 0 2000 10000 0 8000 3 9900 50 12 0 0 0 0 -31403005 0 2 0 5500 10000 0 8000 3 9900 50 1 0 0 50 0 -31401006 0 2 0 800 10000 0 8000 3 9900 50 12 0 0 0 0 -31403006 0 2 0 2400 10000 0 8000 3 9900 50 1 0 0 50 0 -31401007 0 2 0 1600 10000 0 8000 3 9900 50 12 0 0 0 0 -31403007 0 2 0 4500 10000 0 8000 3 9900 50 1 0 0 50 0 -31401008 0 2 0 600 10000 0 8000 3 9900 50 12 0 0 0 0 -31403008 0 2 0 1900 10000 0 8000 3 9900 50 1 0 0 50 0 -31401009 0 2 0 2000 10000 0 8000 3 9900 50 12 0 0 0 0 -31604001 0 4 0 800 10000 0 8000 1 9900 50 1 0 0 0 10000 -33409001 0 2 0 800 10000 0 8000 1 9900 50 1 0 0 5 0 -33409002 0 2 0 800 10000 0 8000 1 9900 50 1 0 0 0 0 -33402001 0 2 0 400 10000 0 8000 1 9900 50 12 0 0 0 0 -33403001 0 2 0 1500 10000 0 8000 1 9900 50 1 0 0 0 0 -33402002 0 2 0 700 10000 0 8000 1 9900 50 12 0 0 0 0 -33403002 0 2 0 2000 10000 0 8000 1 9900 50 1 0 0 0 0 -33402003 0 2 0 200 10000 0 8000 1 9900 50 12 0 0 0 0 -33403003 0 2 0 1000 10000 0 8000 1 9900 50 1 0 0 0 0 -33402004 0 2 0 700 10000 0 8000 1 9900 50 12 0 0 0 0 -33403004 0 2 0 2000 10000 0 8000 1 9900 50 1 0 0 0 0 -33402005 0 2 0 1000 10000 0 8000 1 9900 50 12 0 0 0 0 -33403005 0 2 0 2500 10000 0 8000 1 9900 50 1 0 0 0 0 -33402006 0 2 0 1500 10000 0 8000 1 9900 50 12 0 0 0 0 -33403006 0 2 0 3500 10000 0 8000 1 9900 50 1 0 0 0 0 +MonterID IsStrengthenByPlayerCount LVStrengthenMark LVStrengthenType CmpNPCBaseLV HitTime DefCoefficient AtkCoefficient AdjustCoefficient AtkInterval HitRate MissRate MonterNum IceAtkCoefficient IceDefCoefficient MaxEnduranceTime FightPowerCoefficient +30801001 0 0 1 0 225 3000 0 8000 2 9900 50 20 0 0 0 0 +30801002 0 0 1 0 250 4000 0 8000 2 9900 50 20 0 0 0 0 +30801003 0 0 1 0 275 5000 0 8000 2 9900 50 20 0 0 0 0 +30102001 0 0 1 0 125 6000 0 8000 2 9990 50 20 0 0 0 0 +30102002 0 0 1 0 275 6000 0 8000 2 9990 50 20 0 0 0 0 +30102003 0 0 1 0 850 6000 0 8000 2 9990 50 20 0 0 0 0 +30102004 0 0 1 0 4500 6000 0 8000 2 9990 0 1 0 0 225 0 +30102005 0 0 1 0 4500 6000 0 8000 2 9990 0 1 0 0 225 0 +30102006 0 0 1 0 600 6000 0 8000 2 9990 0 1 0 0 225 0 +30102007 0 0 1 0 600 6000 1500 8000 2 9990 0 20 0 0 60 0 +30102008 0 0 1 0 350 8000 0 8000 2 9990 0 1 0 0 60 0 +30102009 0 0 1 0 475 6000 0 8000 2 9990 0 20 0 0 0 0 +30102010 0 0 1 0 375 6000 0 8000 2 9990 0 20 0 0 0 0 +30102011 0 0 1 0 285 6000 0 8000 2 9990 0 20 0 0 0 0 +30102012 0 0 1 0 475 6000 0 8000 2 9990 0 3 0 0 0 0 +31401001 0 0 1 0 1000 10000 0 8000 2 9900 50 12 0 0 0 0 +31403001 0 0 1 0 1200 10000 0 8000 2 9900 50 2 0 0 0 0 +31001001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001009 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001010 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001011 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31001012 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31003008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +31801001 1 0 1 0 2700 10000 0 8000 2 9990 0 6 0 0 0 0 +31801002 1 0 1 0 2700 10000 0 8000 2 9990 0 2 0 0 120 0 +31801003 1 0 1 0 2700 10000 0 8000 2 9990 0 2 0 0 120 0 +31801004 1 0 1 0 4000 10000 0 8000 2 9990 0 6 0 0 0 0 +31801005 1 0 1 0 4000 10000 0 8000 2 9990 0 2 0 0 120 0 +31801006 1 0 1 0 4000 10000 0 8000 2 9990 0 2 0 0 120 0 +31803001 1 0 1 0 14500 10000 0 8000 2 9990 0 1 0 0 240 0 +31803002 1 0 1 0 14500 10000 0 8000 2 9990 0 3 0 0 160 0 +31803003 1 0 1 0 14500 10000 0 8000 2 9990 0 1 0 0 450 0 +31803004 1 0 1 0 14500 10000 0 8000 2 9990 0 1 0 0 960 0 +31803005 1 0 1 0 14500 10000 0 8000 2 9990 0 1 0 0 960 0 +31701000 1 0 1 0 100 0 0 8000 2 9990 50 10 0 0 0 0 +31701001 1 0 1 0 200 10000 0 6000 2 9990 50 10 0 0 0 0 +31701002 1 0 1 0 400 10000 0 6000 2 9990 50 10 0 0 0 0 +31701003 1 0 1 0 500 10000 0 6000 2 9990 50 10 0 0 0 0 +31702002 1 0 1 0 600 10000 0 8000 2 9990 50 1 0 0 120 0 +31701004 1 0 1 0 1200 10000 0 6000 2 9990 50 10 0 0 0 0 +31701005 1 0 1 0 1500 10000 0 6000 2 9990 50 10 0 0 0 0 +31702003 1 0 1 0 1600 10000 0 8000 2 9990 50 1 0 0 120 0 +31703001 1 0 1 0 5000 10000 0 8000 2 9990 50 1 0 0 120 0 +31703002 1 0 1 0 6000 10000 0 8000 2 9990 50 1 0 0 120 0 +31703003 1 0 1 0 9000 10000 0 8000 2 9990 50 1 0 0 110 0 +31703004 1 0 1 0 14000 10000 0 8000 2 9990 50 1 0 0 100 0 +31701006 1 0 1 0 2000 10000 0 6000 2 9990 50 10 0 0 0 0 +31701007 1 0 1 0 2000 10000 0 6000 2 9990 50 10 0 0 0 0 +31702001 1 0 1 0 2000 10000 1000 8000 2 9990 50 1 0 0 180 0 +31704001 0 0 1 0 12000 100000 0 0 2 9990 50 1 0 0 0 0 +31704002 0 0 1 0 12000 100000 0 0 2 9990 50 1 0 0 0 0 +31704003 0 0 1 0 40000 150000 0 0 2 9990 50 1 0 0 0 0 +30403001 0 0 1 0 1000 10000 0 8000 2 9900 50 12 0 0 0 0 +30403002 0 0 1 0 1000 10000 0 8000 2 9900 50 12 0 0 0 4000 +30403003 0 0 1 0 1200 10000 0 8000 2 9900 50 2 0 0 0 15000 +30403004 0 0 1 0 1200 10000 0 8000 2 9900 50 2 0 0 0 22000 +30903001 1 0 3 0 48000 10000 0 8000 2 9900 50 1 0 0 120 0 +30601001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30603001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30603002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30603003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601009 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30601010 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +30603004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203001 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203002 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203003 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203004 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203005 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203006 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203007 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +61203008 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +50103001 1 0 3 1 232800 10000 0 8000 2 9900 50 1 0 0 1311 0 +50103002 1 0 3 1 251400 10000 0 8000 2 9900 50 1 0 0 1238 0 +50103003 1 0 3 1 279300 10000 0 8000 2 9900 50 1 0 0 1165 0 +50103004 1 0 3 1 325900 10000 0 8000 2 9900 50 1 0 0 1092 0 +50103005 1 0 3 1 372500 10000 0 8000 2 9900 50 1 0 0 1020 0 +50103006 1 0 3 1 419000 10000 0 8000 2 9900 50 1 0 0 947 0 +50103007 1 0 3 1 465600 10000 0 8000 2 9900 50 1 0 0 874 0 +31401002 0 0 2 0 2400 10000 0 8000 3 9900 50 24 0 0 0 0 +31403002 0 0 2 0 5800 10000 0 8000 3 9900 50 1 0 0 50 0 +31401003 0 0 2 0 800 10000 0 8000 3 9900 50 24 0 0 0 0 +31403003 0 0 2 0 5500 10000 0 8000 3 9900 50 1 0 0 50 0 +31401004 0 0 2 0 800 10000 1000 8000 3 9900 50 12 0 0 0 0 +31403004 0 0 2 0 2200 10000 0 8000 3 9900 50 1 0 0 50 0 +31401005 0 0 2 0 2000 10000 0 8000 3 9900 50 12 0 0 0 0 +31403005 0 0 2 0 5500 10000 0 8000 3 9900 50 1 0 0 50 0 +31401006 0 0 2 0 800 10000 0 8000 3 9900 50 12 0 0 0 0 +31403006 0 0 2 0 2400 10000 0 8000 3 9900 50 1 0 0 50 0 +31401007 0 0 2 0 1600 10000 0 8000 3 9900 50 12 0 0 0 0 +31403007 0 0 2 0 4500 10000 0 8000 3 9900 50 1 0 0 50 0 +31401008 0 0 2 0 600 10000 0 8000 3 9900 50 12 0 0 0 0 +31403008 0 0 2 0 1900 10000 0 8000 3 9900 50 1 0 0 50 0 +31401009 0 0 2 0 2000 10000 0 8000 3 9900 50 12 0 0 0 0 +31604001 0 0 4 0 800 10000 0 8000 1 9900 50 1 0 0 0 10000 +33409001 0 1 2 0 800 10000 0 8000 1 9900 50 1 0 0 5 0 +33409002 0 1 2 0 800 10000 0 8000 1 9900 50 1 0 0 0 0 +33402001 0 0 2 0 400 10000 0 8000 1 9900 50 12 0 0 0 0 +33403001 0 0 2 0 1500 10000 0 8000 1 9900 50 1 0 0 0 0 +33402002 0 0 2 0 700 10000 0 8000 1 9900 50 12 0 0 0 0 +33403002 0 0 2 0 2000 10000 0 8000 1 9900 50 1 0 0 0 0 +33402003 0 0 2 0 200 10000 0 8000 1 9900 50 12 0 0 0 0 +33403003 0 0 2 0 1000 10000 0 8000 1 9900 50 1 0 0 0 0 +33402004 0 0 2 0 700 10000 0 8000 1 9900 50 12 0 0 0 0 +33403004 0 0 2 0 2000 10000 0 8000 1 9900 50 1 0 0 0 0 +33402005 0 0 2 0 1000 10000 0 8000 1 9900 50 12 0 0 0 0 +33403005 0 0 2 0 2500 10000 0 8000 1 9900 50 1 0 0 0 0 +33402006 0 0 2 0 1500 10000 0 8000 1 9900 50 12 0 0 0 0 +33403006 0 0 2 0 3500 10000 0 8000 1 9900 50 1 0 0 0 0 -- Gitblit v1.8.0