current code and TeX. code fine?!?!?!
This commit is contained in:
398
pf/EvalWalk.h
Normal file → Executable file
398
pf/EvalWalk.h
Normal file → Executable file
@@ -44,6 +44,15 @@
|
||||
#include <Indoor/sensors/offline/FileReader.h>
|
||||
#include <Indoor/sensors/offline/Listener.h>
|
||||
|
||||
|
||||
#define PLOT_LIVE
|
||||
//#define PLOT_WIFI
|
||||
//#define PLOT_ERROR_TIME
|
||||
//#define PLOT_ERROR_FUNC
|
||||
|
||||
#define PLOT_UPDATE_STEP 20
|
||||
|
||||
|
||||
class EvalWalk : public Offline::Listener {
|
||||
|
||||
Grid<MyGridNode>* grid;
|
||||
@@ -53,6 +62,8 @@ class EvalWalk : public Offline::Listener {
|
||||
|
||||
Plotty plotty;
|
||||
PlotWifiMeasurements plotWifi;
|
||||
PlotErrTime pet;
|
||||
PlotErrFunc pef;
|
||||
|
||||
Offline::FileReader reader;
|
||||
Offline::FilePlayer player;
|
||||
@@ -74,11 +85,15 @@ class EvalWalk : public Offline::Listener {
|
||||
|
||||
EarthMapping em;
|
||||
|
||||
std::string walkName;
|
||||
|
||||
float absHead = 0;
|
||||
|
||||
public:
|
||||
|
||||
EvalWalk(Floorplan::IndoorMap* map) : plotty(map), map(map), em(map) {
|
||||
EvalWalk(Floorplan::IndoorMap* map) : plotty(map), map(map), em(map),
|
||||
pet("\\small{time (sec)}", "\\small{error (m)}", "\\small{APs visible}"),
|
||||
pef("\\small{error (m)}", "\\small{updates (\\%)}") {
|
||||
|
||||
const std::string saveFile = Settings::pathData + "/grid.dat";
|
||||
grid = new Grid<MyGridNode>(Settings::Grid::gridSize_cm);
|
||||
@@ -108,8 +123,8 @@ public:
|
||||
pf->setTransition( std::unique_ptr<PFTrans>( new PFTrans(grid)) );
|
||||
|
||||
// resampling step?
|
||||
//pf->setNEffThreshold(0.15);
|
||||
//pf->setResampling( std::unique_ptr<K::ParticleFilterResamplingSimple<MyState>>(new K::ParticleFilterResamplingSimple<MyState>()) );
|
||||
pf->setNEffThreshold(0.02);
|
||||
pf->setResampling( std::unique_ptr<K::ParticleFilterResamplingSimple<MyState>>(new K::ParticleFilterResamplingSimple<MyState>()) );
|
||||
|
||||
//pf->setNEffThreshold(0.75);
|
||||
//pf->setResampling( std::unique_ptr<K::ParticleFilterResamplingPercent<MyState>>(new K::ParticleFilterResamplingPercent<MyState>(0.10)) );
|
||||
@@ -117,9 +132,9 @@ public:
|
||||
//pf->setNEffThreshold(0.75);
|
||||
//pf->setResampling( std::unique_ptr<K::ParticleFilterResamplingPercent<MyState>>(new K::ParticleFilterResamplingPercent<MyState>(0.05)) );
|
||||
|
||||
K::ParticleFilterResamplingNEff<MyState>* res = new K::ParticleFilterResamplingNEff<MyState>(0.75, 0.05);
|
||||
pf->setNEffThreshold(1.0);
|
||||
pf->setResampling( std::unique_ptr<K::ParticleFilterResamplingNEff<MyState>>(res) );
|
||||
// K::ParticleFilterResamplingNEff<MyState>* res = new K::ParticleFilterResamplingNEff<MyState>(0.75, 0.05);
|
||||
// pf->setNEffThreshold(1.0);
|
||||
// pf->setResampling( std::unique_ptr<K::ParticleFilterResamplingNEff<MyState>>(res) );
|
||||
|
||||
// move during resampling. NOT ALLOWED!
|
||||
// res->setDrawCallback([&] (K::Particle<MyState>& p) {
|
||||
@@ -145,6 +160,211 @@ public:
|
||||
|
||||
}
|
||||
|
||||
struct LeWalk {
|
||||
std::string name;
|
||||
float absHead;
|
||||
std::string walkFile;
|
||||
std::vector<int> gtIndices;
|
||||
LeWalk(const std::string& name, float absHead, std::string walkFile, std::vector<int> gtIndices) :
|
||||
name(name), absHead(absHead), walkFile(walkFile), gtIndices(gtIndices) {
|
||||
;
|
||||
}
|
||||
};
|
||||
|
||||
struct LeModel {
|
||||
std::string name;
|
||||
WiFiModel* model;
|
||||
LeModel(const std::string& name, WiFiModel* model) : name(name), model(model) {;}
|
||||
};
|
||||
|
||||
static void serialize(const K::Statistics<float>& stats, const LeWalk& walk, const LeModel& model, const int idx) {
|
||||
const std::string file = Settings::fPathGFX + "/walks/data/" + walk.name + "_" + model.name + "_" + std::to_string(idx) + ".txt";
|
||||
std::ofstream out(file);
|
||||
for (const float f : stats.getAll()) {
|
||||
out << f << "\n";
|
||||
}
|
||||
out.close();
|
||||
}
|
||||
|
||||
static K::Statistics<float>* deserialize(const LeWalk& walk, const LeModel& model, const int idx) {
|
||||
const std::string file = Settings::fPathGFX + "/walks/data/" + walk.name + "_" + model.name + "_" + std::to_string(idx) + ".txt";
|
||||
K::Statistics<float>* res = new K::Statistics<float>();
|
||||
std::ifstream inp(file);
|
||||
while(inp) {
|
||||
float f;
|
||||
inp >> f;
|
||||
res->add(f);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
static std::vector<LeWalk> allWalks() {
|
||||
return {
|
||||
LeWalk("path1a", M_PI/2, Settings::path1a, Settings::GroundTruth::path1),
|
||||
LeWalk("path1b", M_PI/2, Settings::path1b, Settings::GroundTruth::path1),
|
||||
LeWalk("toni-all-1a", M_PI/2, Settings::path_toni_all_1a, Settings::GroundTruth::path1),
|
||||
LeWalk("toni-all-1b", M_PI/2, Settings::path_toni_all_1b, Settings::GroundTruth::path1),
|
||||
LeWalk("path2a", 0, Settings::path2a, Settings::GroundTruth::path2),
|
||||
LeWalk("path2b", 0, Settings::path2b, Settings::GroundTruth::path2),
|
||||
LeWalk("toni-all-2a", M_PI/2, Settings::path_toni_all_2a, Settings::GroundTruth::path2),
|
||||
LeWalk("toni-all-2b", M_PI/2, Settings::path_toni_all_2b, Settings::GroundTruth::path2),
|
||||
/////////LeWalk("toni-inst-1a", M_PI/2, Settings::path_toni_inst_1a, Settings::GroundTruth::path_toni_inst_1),
|
||||
LeWalk("toni-inst-1b", M_PI/2, Settings::path_toni_inst_1b, Settings::GroundTruth::path_toni_inst_1),
|
||||
LeWalk("toni-inst-2a", M_PI/2, Settings::path_toni_inst_2a, Settings::GroundTruth::path_toni_inst_2),
|
||||
LeWalk("toni-inst-2b", M_PI/2, Settings::path_toni_inst_2b, Settings::GroundTruth::path_toni_inst_2),
|
||||
LeWalk("toni-inst-3a", M_PI/2, Settings::path_toni_inst_3a, Settings::GroundTruth::path_toni_inst_3),
|
||||
LeWalk("toni-inst-3b", M_PI/2, Settings::path_toni_inst_3b, Settings::GroundTruth::path_toni_inst_3),
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
static std::vector<LeModel> allModels(Floorplan::IndoorMap* map) {
|
||||
WiFiModelFactory fac(map);
|
||||
return {
|
||||
//LeModel("empiric", fac.loadXML(Settings::wifiAllFixed)),
|
||||
//LeModel("opt 1", fac.loadXML(Settings::wifiAllOptPar)),
|
||||
//LeModel("opt 2", fac.loadXML(Settings::wifiEachOptPar)),
|
||||
//LeModel("opt 3", fac.loadXML(Settings::wifiEachOptParPos)),
|
||||
//LeModel("per floor", fac.loadXML(Settings::wifiEachOptParPos_multimodel)),
|
||||
LeModel("per bbox", fac.loadXML(Settings::wifiEachOptParPos_perBBox)),
|
||||
};
|
||||
}
|
||||
|
||||
static constexpr int numRepeats = 1;
|
||||
|
||||
/** create GFX for all previously walked parts */
|
||||
static void walkEverythingBuildStats(Floorplan::IndoorMap* map) {
|
||||
|
||||
const std::vector<LeWalk> walks = allWalks();
|
||||
const std::vector<LeModel> models = allModels(map);
|
||||
|
||||
PlotErrFunc* pefAll = new PlotErrFunc();
|
||||
int numStuck = 0;
|
||||
int numTotal = 0;
|
||||
|
||||
for (const LeModel& mdl : models) {
|
||||
|
||||
K::Statistics<float>* modelStatsAvg = new K::Statistics<float>();
|
||||
K::Statistics<float>* modelStatsMed = new K::Statistics<float>();
|
||||
|
||||
K::Statistics<float>* modelStatsSingle = new K::Statistics<float>();
|
||||
pefAll->add(mdl.name, modelStatsSingle);
|
||||
|
||||
|
||||
|
||||
// ... to perform every walk...
|
||||
for (const LeWalk& walk : walks) {
|
||||
|
||||
for (int i = 0; i < numRepeats; ++i) {
|
||||
|
||||
++numTotal;
|
||||
K::Statistics<float>* walkStats = deserialize(walk, mdl, i);
|
||||
|
||||
if (walkStats->getMedian() < 10) {
|
||||
modelStatsSingle->add(*walkStats);
|
||||
pefAll->plot();
|
||||
} else {
|
||||
++numStuck;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
sleep(1);
|
||||
|
||||
}
|
||||
|
||||
std::cout << "stuck: " << numStuck << " (" << (numStuck*100/numTotal) << "%)" << std::endl;
|
||||
|
||||
sleep(100);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/** perform all walks and write them to file */
|
||||
static void walkEverything(Floorplan::IndoorMap* map) {
|
||||
|
||||
const std::vector<LeWalk> walks = allWalks();
|
||||
const std::vector<LeModel> models = allModels(map);
|
||||
|
||||
PlotErrFunc* pefAll = new PlotErrFunc();
|
||||
|
||||
// use every model ...
|
||||
for (const LeModel& mdl : models) {
|
||||
|
||||
K::Statistics<float>* modelStatsSingle = new K::Statistics<float>();
|
||||
pefAll->add(mdl.name, modelStatsSingle);
|
||||
|
||||
// ... to perform every walk...
|
||||
for (const LeWalk& walk : walks) {
|
||||
|
||||
//K::Statistics<float> curWalkRepeatStatsAvg;
|
||||
//K::Statistics<float> curWalkRepeatStatsMed;
|
||||
|
||||
// ... several times
|
||||
for (int i = 0; i < numRepeats; ++i) {
|
||||
|
||||
EvalWalk ew(map);
|
||||
ew.walkName = walk.name + " - " + mdl.name + " - " + std::to_string(i);
|
||||
|
||||
// get ground-truth
|
||||
ew.absHead = walk.absHead;
|
||||
ew.groundTruth = FloorplanHelper::getGroundTruth(map, walk.gtIndices);
|
||||
|
||||
// eval
|
||||
std::unique_ptr<PFEval> eval = std::unique_ptr<PFEval>( new PFEval(ew.grid, *mdl.model, ew.em) );
|
||||
ew.pf->setEvaluation( std::move(eval) );
|
||||
|
||||
// data-file
|
||||
ew.reader.open(walk.walkFile);
|
||||
ew.groundTruthLive = ew.reader.getGroundTruth(map, walk.gtIndices);
|
||||
ew.player.setReader(&ew.reader);
|
||||
ew.player.setListener(&ew);
|
||||
ew.player.start();
|
||||
|
||||
// wait for completion
|
||||
ew.player.join();
|
||||
|
||||
// write plots
|
||||
ew.writeToFile();
|
||||
|
||||
// add every single error for each timestamp to the overall model error
|
||||
modelStatsSingle->reset();
|
||||
modelStatsSingle->add(ew.statsErr);
|
||||
|
||||
// export this walks's statistics
|
||||
serialize(ew.statsErr, walk, mdl, i);
|
||||
|
||||
pefAll->plot();
|
||||
|
||||
}
|
||||
|
||||
// all repeats done
|
||||
const std::string walkname = walk.name + " - " + mdl.name;
|
||||
std::cout << "walk result for " << walkname << std::endl;
|
||||
//std::cout << "\t" << curWalkRepeatStatsAvg.asString() << std::endl;
|
||||
//std::cout << "\t" << curWalkRepeatStatsMed.asString() << std::endl;
|
||||
std::cout << std::endl;
|
||||
//sleep(1);
|
||||
|
||||
}
|
||||
|
||||
// all walks for one model done
|
||||
std::cout << "MODEL RESULTS for " << mdl.name << std::endl;
|
||||
//std::cout << "\t" << modelStatsAvg->asString() << std::endl;
|
||||
//std::cout << "\t" << modelStatsMed->asString() << std::endl;
|
||||
std::cout << std::endl;
|
||||
std::cout << std::endl;
|
||||
std::cout << std::endl;
|
||||
|
||||
sleep(2);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
void walk1() {
|
||||
|
||||
// path1
|
||||
@@ -211,7 +431,7 @@ public:
|
||||
++curCtrl.numStepsSinceLastTransition;
|
||||
}
|
||||
gotSensorData(ts);
|
||||
curCtrl.activityNew = actDetect.add(ts, data);
|
||||
actDetect.add(ts, data);
|
||||
}
|
||||
|
||||
virtual void onGravity(const Timestamp ts, const GravityData data) override {
|
||||
@@ -219,14 +439,18 @@ public:
|
||||
}
|
||||
|
||||
virtual void onWiFi(const Timestamp ts, const WiFiMeasurements data) override {
|
||||
std::cout << "WIFI" << std::endl;
|
||||
curObs.wifi = data;
|
||||
//curObs.wifi = WiFiMeasurements::mix(curObs.wifi, data);
|
||||
#ifdef PLOT_WIFI
|
||||
plotWifi.add(Settings::WiFiModel::vg_eval.group(data));
|
||||
plotWifi.plot();
|
||||
#endif
|
||||
}
|
||||
|
||||
virtual void onBarometer(const Timestamp ts, const BarometerData data) override {
|
||||
;
|
||||
actDetect.add(ts, data);
|
||||
curCtrl.activityNew = actDetect.get();
|
||||
curObs.activityNew = actDetect.get();
|
||||
}
|
||||
|
||||
virtual void onGPS(const Timestamp ts, const GPSData data) override {
|
||||
@@ -300,12 +524,48 @@ private:
|
||||
return set.size();
|
||||
}
|
||||
|
||||
|
||||
void writeToFile() {
|
||||
|
||||
std::string path = Settings::fPathGFX;
|
||||
std::string base = path + "/walks/" + "walk-" + walkName;
|
||||
|
||||
plotty.gp << "unset arrow 1\n";
|
||||
plotty.gp << "unset arrow 2\n";
|
||||
plotty.gp << "unset colorbox\n";
|
||||
plotty.gp << "unset border\n";
|
||||
plotty.gp << "set view equal xy\n";
|
||||
plotty.splot.getView().setCamera(74,30);
|
||||
plotty.splot.getView().setScaleAll(3.5);
|
||||
plotty.splot.getAxisX().setTicsVisible(false);
|
||||
plotty.splot.getAxisY().setTicsVisible(false);
|
||||
plotty.splot.getAxisZ().setTicsVisible(false);
|
||||
|
||||
plotty.particles.clear();
|
||||
plotty.gp.setTerminal("epslatex", K::GnuplotSize(8.6, 4.5));
|
||||
plotty.gp.setOutput(base + "-map.tex");
|
||||
plotty.writeCodeTo(base + "-map.gp");
|
||||
plotty.plot();
|
||||
|
||||
pef.getPlot().getMargin().set(4, 0.2, 0.1, 2.0);
|
||||
pef.getGP().setTerminal("epslatex", K::GnuplotSize(8.6, 3.0));
|
||||
pef.getGP().setOutput(base + "-error-cum.tex");
|
||||
pef.writePlotToFile(base + "-error-cum.gp");
|
||||
pef.plot();
|
||||
|
||||
pet.getPlot().getMargin().set(4, 0.2, 0.1, 2.0);
|
||||
pet.getGP().setTerminal("epslatex", K::GnuplotSize(8.6, 3.0));
|
||||
pet.getGP().setOutput(base + "-error-time.tex");
|
||||
pet.writePlotToFile(base + "-error-time.gp");
|
||||
pet.plot();
|
||||
|
||||
}
|
||||
|
||||
/** perform a filter-update (called from a background-loop) */
|
||||
void filterUpdate() {
|
||||
|
||||
++updateCount;
|
||||
static PlotErrTime pet("\\small{time (sec)}", "\\small{error (m)}", "\\small{APs visible}");
|
||||
static PlotErrFunc pef("\\small{error (m)}", "\\small{updates (\\%)}");
|
||||
|
||||
pef.showMarkers(true, true);
|
||||
|
||||
std::cout << "update" << std::endl;
|
||||
@@ -319,22 +579,23 @@ private:
|
||||
|
||||
const Point3 curGT = groundTruthLive.get(lastTransition);
|
||||
|
||||
plotty.setCurEst(curEst.position.inMeter());
|
||||
plotty.setGroundTruth(curGT);
|
||||
|
||||
if (updateCount > 4) {
|
||||
// start the error-over-time plot after some filter updates
|
||||
if (updateCount > 12) {
|
||||
|
||||
// error between ground-truth and estimation
|
||||
const float estRealErr = curEst.position.inMeter().getDistance(curGT);
|
||||
statsErr.add(estRealErr);
|
||||
|
||||
#ifdef PLOT_ERROR_FUNC
|
||||
pef.clear();
|
||||
pef.add("", &statsErr);
|
||||
pef.plot();
|
||||
#endif
|
||||
|
||||
#ifdef PLOT_ERROR_TIME
|
||||
// timed error
|
||||
pet.addErr(lastTransition, estRealErr);
|
||||
pet.addB(lastTransition, getNumFHWSAPs(curObs.wifi));
|
||||
pet.plot();
|
||||
#endif
|
||||
|
||||
// update estimated path
|
||||
const K::GnuplotPoint3 p3(curEst.position.x_cm, curEst.position.y_cm, curEst.position.z_cm);
|
||||
@@ -342,50 +603,73 @@ private:
|
||||
|
||||
}
|
||||
|
||||
std::cout << statsErr.asString() << std::endl;
|
||||
|
||||
// show particles
|
||||
float maxWeight = 0;
|
||||
float minWeight = 99;
|
||||
plotty.particles.clear();
|
||||
for (const auto p : pf->getParticles()) {
|
||||
const K::GnuplotPoint3 p3(p.state.position.x_cm, p.state.position.y_cm, p.state.position.z_cm);
|
||||
plotty.particles.add(p3/100, p.weight);
|
||||
if (p.weight > maxWeight) {maxWeight = p.weight;}
|
||||
if (p.weight < minWeight) {minWeight = p.weight;}
|
||||
}
|
||||
plotty.gp << "set cbrange [" << minWeight << ":" << maxWeight << "] \n";
|
||||
|
||||
// show ground-truth
|
||||
plotty.pathReal.clear();
|
||||
for (const Point3 pt : groundTruth) {
|
||||
plotty.pathReal.add(K::GnuplotPoint3(pt.x, pt.y, pt.z));
|
||||
}
|
||||
|
||||
std::string title =
|
||||
" time " + std::to_string(curObs.currentTime.sec()) +
|
||||
" steps: " + std::to_string(ctrlCopy.numStepsSinceLastTransition) +
|
||||
" turn: " + std::to_string(ctrlCopy.turnSinceLastTransition_rad) +
|
||||
" APs: " + std::to_string(curObs.wifi.entries.size()) +
|
||||
" Act: " + std::to_string((int)curCtrl.activityNew);
|
||||
plotty.setTitle(title);
|
||||
|
||||
// relative heading and compass
|
||||
{
|
||||
Point2 cen(0.1, 0.9);
|
||||
Point2 dir(std::cos(absHead), std::sin(absHead));
|
||||
Point2 arr = cen + dir * 0.1;
|
||||
plotty.gp << "set arrow 1 from screen " << cen.x << "," << cen.y << " to screen " << arr.x << "," << arr.y << "\n";
|
||||
dir = Point2(std::cos(ctrlCopy.compassAzimuth_rad), std::sin(ctrlCopy.compassAzimuth_rad));
|
||||
arr = cen + dir * 0.05;
|
||||
plotty.gp << "set arrow 2 from screen " << cen.x << "," << cen.y << " to screen " << arr.x << "," << arr.y << "\n";
|
||||
}
|
||||
|
||||
|
||||
// plot
|
||||
plotty.plot();
|
||||
static int cnt = 0;
|
||||
if (++cnt % PLOT_UPDATE_STEP == 0) {
|
||||
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(5));
|
||||
std::cout << statsErr.asString() << std::endl;
|
||||
|
||||
// estimation and ground-truth
|
||||
plotty.setCurEst(curEst.position.inMeter());
|
||||
plotty.setGroundTruth(curGT);
|
||||
|
||||
// show particles
|
||||
float maxWeight = 0;
|
||||
float minWeight = 99;
|
||||
plotty.particles.clear();
|
||||
for (int i = 0; i < pf->getParticles().size(); i += 10) {
|
||||
const auto p = pf->getParticles()[i];
|
||||
const K::GnuplotPoint3 p3(p.state.position.x_cm, p.state.position.y_cm, p.state.position.z_cm);
|
||||
plotty.particles.add(p3/100, p.weight);
|
||||
if (p.weight > maxWeight) {maxWeight = p.weight;}
|
||||
if (p.weight < minWeight) {minWeight = p.weight;}
|
||||
}
|
||||
plotty.gp << "set cbrange [" << minWeight << ":" << maxWeight << "] \n";
|
||||
|
||||
// show ground-truth
|
||||
plotty.pathReal.clear();
|
||||
for (const Point3 pt : groundTruth) {
|
||||
plotty.pathReal.add(K::GnuplotPoint3(pt.x, pt.y, pt.z));
|
||||
}
|
||||
|
||||
std::string title =
|
||||
" time " + std::to_string(curObs.currentTime.sec()) +
|
||||
" steps: " + std::to_string(ctrlCopy.numStepsSinceLastTransition) +
|
||||
" turn: " + std::to_string(ctrlCopy.turnSinceLastTransition_rad) +
|
||||
" APs: " + std::to_string(curObs.wifi.entries.size()) +
|
||||
" Act: " + std::to_string((int)curCtrl.activityNew) +
|
||||
" " + walkName;
|
||||
plotty.setTitle(title);
|
||||
|
||||
// relative heading and compass
|
||||
{
|
||||
Point2 cen(0.1, 0.9);
|
||||
Point2 dir(std::cos(absHead), std::sin(absHead));
|
||||
Point2 arr = cen + dir * 0.1;
|
||||
plotty.gp << "set arrow 1 from screen " << cen.x << "," << cen.y << " to screen " << arr.x << "," << arr.y << "\n";
|
||||
dir = Point2(std::cos(ctrlCopy.compassAzimuth_rad), std::sin(ctrlCopy.compassAzimuth_rad));
|
||||
arr = cen + dir * 0.05;
|
||||
plotty.gp << "set arrow 2 from screen " << cen.x << "," << cen.y << " to screen " << arr.x << "," << arr.y << "\n";
|
||||
}
|
||||
|
||||
|
||||
#ifdef PLOT_LIVE
|
||||
plotty.plot();
|
||||
#endif
|
||||
|
||||
#ifdef PLOT_ERROR_TIME
|
||||
pet.plot();
|
||||
#endif
|
||||
|
||||
#ifdef PLOT_ERROR_FUNC
|
||||
pef.plot();
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
//std::this_thread::sleep_for(std::chrono::milliseconds(5));
|
||||
|
||||
curCtrl.resetAfterTransition();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user