2022-04-30 09:41:17 -04:00
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2022
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
|
|
|
2023-08-01 20:13:23 -05:00
|
|
|
package engine.mobileAI.utilities;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
|
|
|
|
import engine.Enum;
|
|
|
|
|
import engine.Enum.GameObjectType;
|
|
|
|
|
import engine.Enum.ModType;
|
|
|
|
|
import engine.Enum.SourceType;
|
|
|
|
|
import engine.exception.MsgSendException;
|
2023-10-26 20:04:11 -05:00
|
|
|
import engine.gameManager.BuildingManager;
|
2022-04-30 09:41:17 -04:00
|
|
|
import engine.gameManager.MovementManager;
|
2023-10-27 20:03:15 -05:00
|
|
|
import engine.gameManager.ZoneManager;
|
2023-10-26 20:04:11 -05:00
|
|
|
import engine.math.Bounds;
|
2022-04-30 09:41:17 -04:00
|
|
|
import engine.math.Vector3fImmutable;
|
2023-08-26 11:55:18 -04:00
|
|
|
import engine.mobileAI.Threads.MobAIThread;
|
2022-04-30 09:41:17 -04:00
|
|
|
import engine.net.client.msg.MoveToPointMsg;
|
|
|
|
|
import engine.objects.*;
|
|
|
|
|
import org.pmw.tinylog.Logger;
|
|
|
|
|
|
2023-10-26 20:04:11 -05:00
|
|
|
import java.util.ArrayList;
|
2022-04-30 09:41:17 -04:00
|
|
|
import java.util.concurrent.ThreadLocalRandom;
|
|
|
|
|
|
|
|
|
|
import static engine.math.FastMath.sqr;
|
|
|
|
|
import static engine.math.FastMath.sqrt;
|
|
|
|
|
|
|
|
|
|
public class MovementUtilities {
|
2023-10-28 00:14:36 -05:00
|
|
|
private static final int cellGap = 1;
|
2023-10-28 00:22:27 -05:00
|
|
|
private static final int stepHeight = 2;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
public static boolean inRangeOfBindLocation(Mob agent) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (agent.isPlayerGuard()) {
|
|
|
|
|
|
|
|
|
|
Mob guardCaptain = null;
|
|
|
|
|
if (agent.getContract() != null)
|
|
|
|
|
guardCaptain = agent;
|
|
|
|
|
else
|
2023-08-26 11:55:18 -04:00
|
|
|
guardCaptain = (Mob) agent.guardCaptain;
|
2023-05-28 08:12:34 -04:00
|
|
|
|
|
|
|
|
if (guardCaptain != null) {
|
2023-03-31 09:59:49 -04:00
|
|
|
Building barracks = guardCaptain.building;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
if (barracks != null) {
|
|
|
|
|
City city = barracks.getCity();
|
|
|
|
|
|
|
|
|
|
if (city != null) {
|
|
|
|
|
Building tol = city.getTOL();
|
|
|
|
|
|
|
|
|
|
//Guards recall distance = 814.
|
|
|
|
|
if (tol != null) {
|
2023-09-17 12:23:06 -04:00
|
|
|
return !(agent.getLoc().distanceSquared2D(tol.getLoc()) > sqr(Enum.CityBoundsType.ZONE.halfExtents));
|
2023-05-28 08:12:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
return true;
|
|
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
Vector3fImmutable sl = new Vector3fImmutable(agent.getLoc().getX(), 0, agent.getLoc().getZ());
|
|
|
|
|
Vector3fImmutable tl = new Vector3fImmutable(agent.getTrueBindLoc().x, 0, agent.getTrueBindLoc().z);
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
float distanceSquaredToTarget = sl.distanceSquared2D(tl); //distance to center of target
|
|
|
|
|
float zoneRange = 250;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
if (agent.getParentZone() != null) {
|
2023-09-20 15:43:01 -04:00
|
|
|
if (agent.getParentZone().bounds != null)
|
|
|
|
|
zoneRange = agent.getParentZone().bounds.getHalfExtents().x * 2;
|
2023-05-28 08:12:34 -04:00
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
if (zoneRange > 300)
|
|
|
|
|
zoneRange = 300;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
if (agent.getSpawnRadius() > zoneRange)
|
|
|
|
|
zoneRange = agent.getSpawnRadius();
|
2022-04-30 09:41:17 -04:00
|
|
|
|
|
|
|
|
|
2023-08-01 20:13:23 -05:00
|
|
|
return distanceSquaredToTarget < sqr(MobAIThread.AI_DROP_AGGRO_RANGE + zoneRange);
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
public static boolean inRangeToAggro(Mob agent, PlayerCharacter target) {
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
Vector3fImmutable sl = agent.getLoc();
|
|
|
|
|
Vector3fImmutable tl = target.getLoc();
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
float distanceSquaredToTarget = sl.distanceSquared2D(tl) - sqr(agent.calcHitBox() + target.calcHitBox()); //distance to center of target
|
2023-08-01 20:13:23 -05:00
|
|
|
float range = MobAIThread.AI_BASE_AGGRO_RANGE;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
if (agent.isPlayerGuard())
|
|
|
|
|
range = 150;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
return distanceSquaredToTarget < sqr(range);
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 10:55:11 -05:00
|
|
|
public static boolean inRangeDropAggro(Mob agent, AbstractCharacter target) {
|
2023-10-27 23:29:54 -05:00
|
|
|
float range = MobAIThread.AI_BASE_AGGRO_RANGE * MobAIThread.AI_BASE_AGGRO_RANGE;
|
|
|
|
|
if(agent.isPlayerGuard())
|
|
|
|
|
range = 62500;
|
|
|
|
|
if(agent.isSiege())
|
|
|
|
|
range = agent.getRange() * agent.getRange();
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-10-27 23:29:54 -05:00
|
|
|
return agent.loc.distanceSquared(target.loc) > range;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-09-09 09:35:03 -05:00
|
|
|
public static void moveToLocation(Mob agent, Vector3fImmutable newLocation, float offset, boolean isWalking) {
|
2023-05-28 08:12:34 -04:00
|
|
|
try {
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
//don't move farther than 30 units from player.
|
|
|
|
|
if (offset > 30)
|
|
|
|
|
offset = 30;
|
|
|
|
|
Vector3fImmutable newLoc = Vector3fImmutable.getRandomPointInCircle(newLocation, offset);
|
2022-04-30 09:41:17 -04:00
|
|
|
|
|
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
agent.setFaceDir(newLoc.subtract2D(agent.getLoc()).normalize());
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-09-09 09:35:03 -05:00
|
|
|
aiMove(agent, newLoc, isWalking);
|
2023-05-28 08:12:34 -04:00
|
|
|
} catch (Exception e) {
|
|
|
|
|
Logger.error(e.toString());
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
public static boolean canMove(Mob agent) {
|
|
|
|
|
if (agent.getMobBase() != null && Enum.MobFlagType.SENTINEL.elementOf(agent.getMobBase().getFlags()))
|
|
|
|
|
return false;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
return (agent.isAlive() && !agent.getBonuses().getBool(ModType.Stunned, SourceType.None) && !agent.getBonuses().getBool(ModType.CannotMove, SourceType.None));
|
|
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
public static void aiMove(Mob agent, Vector3fImmutable vect, boolean isWalking) {
|
|
|
|
|
|
|
|
|
|
//update our walk/run state.
|
|
|
|
|
if (isWalking && !agent.isWalk()) {
|
|
|
|
|
agent.setWalkMode(true);
|
|
|
|
|
MovementManager.sendRWSSMsg(agent);
|
|
|
|
|
} else if (!isWalking && agent.isWalk()) {
|
|
|
|
|
agent.setWalkMode(false);
|
|
|
|
|
MovementManager.sendRWSSMsg(agent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MoveToPointMsg msg = new MoveToPointMsg();
|
2022-04-30 09:41:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// Regions currentRegion = Mob.InsideBuildingRegion(agent);
|
|
|
|
|
//
|
|
|
|
|
// if (currentRegion != null){
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// if (currentRegion.isGroundLevel()){
|
|
|
|
|
// agent.setInBuilding(0);
|
|
|
|
|
// agent.setInFloorID(-1);
|
|
|
|
|
// }else{
|
|
|
|
|
// agent.setInBuilding(currentRegion.getLevel());
|
|
|
|
|
// agent.setInFloorID(currentRegion.getRoom());
|
|
|
|
|
// }
|
|
|
|
|
// }else{
|
|
|
|
|
// agent.setInBuilding(-1);
|
|
|
|
|
// agent.setInFloorID(-1);
|
|
|
|
|
// agent.setInBuildingID(0);
|
|
|
|
|
// }
|
|
|
|
|
// agent.setLastRegion(currentRegion);
|
|
|
|
|
|
|
|
|
|
|
2023-05-28 08:12:34 -04:00
|
|
|
Vector3fImmutable startLoc = null;
|
|
|
|
|
Vector3fImmutable endLoc = null;
|
2022-04-30 09:41:17 -04:00
|
|
|
|
|
|
|
|
// if (agent.getLastRegion() != null){
|
|
|
|
|
// Building inBuilding = Building.getBuildingFromCache(agent.getInBuildingID());
|
|
|
|
|
// if (inBuilding != null){
|
|
|
|
|
// startLoc = ZoneManager.convertWorldToLocal(inBuilding, agent.getLoc());
|
|
|
|
|
// endLoc = ZoneManager.convertWorldToLocal(inBuilding, vect);
|
|
|
|
|
// }
|
|
|
|
|
// }else{
|
|
|
|
|
// agent.setBuildingID(0);
|
|
|
|
|
// agent.setInBuildingID(0);
|
|
|
|
|
// startLoc = agent.getLoc();
|
|
|
|
|
// endLoc = vect;
|
|
|
|
|
// }
|
2023-05-28 08:12:34 -04:00
|
|
|
|
|
|
|
|
startLoc = agent.getLoc();
|
|
|
|
|
endLoc = vect;
|
|
|
|
|
|
|
|
|
|
msg.setSourceType(GameObjectType.Mob.ordinal());
|
|
|
|
|
msg.setSourceID(agent.getObjectUUID());
|
|
|
|
|
msg.setStartCoord(startLoc);
|
|
|
|
|
msg.setEndCoord(endLoc);
|
2023-09-10 19:37:46 -05:00
|
|
|
msg.setInBuildingFloor(-1);
|
2023-05-28 08:12:34 -04:00
|
|
|
msg.setInBuilding(-1);
|
2023-09-10 19:37:46 -05:00
|
|
|
msg.setStartLocType(0);
|
|
|
|
|
msg.setInBuildingUUID(0);
|
2023-05-28 08:12:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
MovementManager.movement(msg, agent);
|
|
|
|
|
} catch (MsgSendException e) {
|
|
|
|
|
// TODO Figure out how we want to handle the msg send exception
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Vector3fImmutable GetDestinationToCharacter(Mob aiAgent, AbstractCharacter character) {
|
|
|
|
|
|
|
|
|
|
if (!character.isMoving())
|
|
|
|
|
return character.getLoc();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
float agentDistanceEndLoc = aiAgent.getLoc().distanceSquared2D(character.getEndLoc());
|
|
|
|
|
float characterDistanceEndLoc = character.getLoc().distanceSquared2D(character.getEndLoc());
|
|
|
|
|
|
|
|
|
|
if (agentDistanceEndLoc > characterDistanceEndLoc)
|
|
|
|
|
return character.getEndLoc();
|
|
|
|
|
|
|
|
|
|
return character.getLoc();
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-26 20:04:11 -05:00
|
|
|
public static void pathfind(AbstractCharacter character, Vector3fImmutable goal){
|
|
|
|
|
try {
|
2023-10-26 21:12:11 -05:00
|
|
|
|
|
|
|
|
if(character.region == null && Regions.getRegionAtLocation(goal) != null) {//mover not inside a building
|
|
|
|
|
Building building = BuildingManager.getBuildingAtLocation(goal);
|
2023-10-27 21:55:31 -05:00
|
|
|
ArrayList<Regions> entrances = new ArrayList<>();
|
|
|
|
|
for (Regions region : building.getBounds().getRegions()) {
|
2023-10-26 21:12:11 -05:00
|
|
|
if (region.exit && region.level == 0)
|
2023-10-27 21:55:31 -05:00
|
|
|
entrances.add(region);
|
|
|
|
|
}
|
|
|
|
|
Regions cheapest = null;
|
|
|
|
|
for(Regions entrance : entrances){
|
|
|
|
|
if(cheapest == null) {
|
|
|
|
|
cheapest = entrance;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if(getCost(new Vector3fImmutable(entrance.center),character.loc,goal) < getCost(new Vector3fImmutable(cheapest.center),character.loc,goal))
|
|
|
|
|
cheapest = entrance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
goal = new Vector3fImmutable(cheapest.center.x, cheapest.center.y, cheapest.center.z);
|
|
|
|
|
|
2023-10-26 21:12:11 -05:00
|
|
|
}
|
|
|
|
|
|
2023-10-26 20:04:11 -05:00
|
|
|
ArrayList<Vector3fImmutable> path = getOptimizedPath(getPath(character.loc, goal), getPath(goal, character.loc));
|
|
|
|
|
if (path.isEmpty()) {
|
2023-10-26 21:12:11 -05:00
|
|
|
((Mob) character).destination = goal;
|
2023-10-26 20:04:11 -05:00
|
|
|
return; //no points to walk to
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
((Mob) character).destination = path.get(0);
|
|
|
|
|
|
|
|
|
|
} catch(Exception e){
|
|
|
|
|
//something failed
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static ArrayList<Vector3fImmutable> getOptimizedPath(ArrayList<Vector3fImmutable> startToGoal, ArrayList<Vector3fImmutable> goalToStart) {
|
|
|
|
|
ArrayList<Vector3fImmutable> optimalPath = new ArrayList<>();
|
|
|
|
|
optimalPath.add(startToGoal.get(0));
|
|
|
|
|
for(Vector3fImmutable point : startToGoal)
|
|
|
|
|
{
|
|
|
|
|
if(!goalToStart.contains(point))
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
optimalPath.add(point);
|
|
|
|
|
}
|
|
|
|
|
return optimalPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static ArrayList<Vector3fImmutable> getPath(Vector3fImmutable start, Vector3fImmutable goal) {
|
|
|
|
|
ArrayList<Vector3fImmutable> path = new ArrayList<>();
|
|
|
|
|
path.add(start);
|
|
|
|
|
Vector3fImmutable current = start;
|
|
|
|
|
boolean obstructed = false;
|
2023-10-26 20:33:22 -05:00
|
|
|
int count = 0;
|
|
|
|
|
while (current.distanceSquared(goal) > 9 && count < 250)
|
2023-10-26 20:04:11 -05:00
|
|
|
{
|
|
|
|
|
//gather the 8 cells around the player
|
|
|
|
|
ArrayList<Vector3fImmutable> surroundingCells = new ArrayList<>();
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(cellGap, 0, 0)));
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(cellGap, 0, cellGap)));
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(0, 0, cellGap)));
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(-cellGap, 0, 0)));
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(-cellGap, 0, -cellGap)));
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(0, 0, -cellGap)));
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(-cellGap, 0, cellGap)));
|
|
|
|
|
surroundingCells.add(current.add(new Vector3fImmutable(cellGap, 0, -cellGap)));
|
2023-10-26 21:12:11 -05:00
|
|
|
Vector3fImmutable cheapest = new Vector3fImmutable(Vector3fImmutable.ZERO);
|
2023-10-26 20:04:11 -05:00
|
|
|
for (Vector3fImmutable point : surroundingCells)
|
|
|
|
|
{
|
2023-10-26 20:33:22 -05:00
|
|
|
count++;
|
2023-10-26 21:12:11 -05:00
|
|
|
|
2023-10-26 20:04:11 -05:00
|
|
|
if (path.contains(point))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (pointIsBlocked(point)) {
|
|
|
|
|
obstructed = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2022-04-30 09:41:17 -04:00
|
|
|
|
2023-10-28 00:22:27 -05:00
|
|
|
Regions region = Regions.getRegionAtLocation(point);
|
|
|
|
|
if(region != null)
|
|
|
|
|
point = new Vector3fImmutable(point.x,region.lerpY(point),point.z); // adjust the Y value of the point to the region height it is in
|
|
|
|
|
|
2023-10-26 20:04:11 -05:00
|
|
|
if (getCost(cheapest, current, goal) > getCost(point, current, goal))
|
|
|
|
|
cheapest = point;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
current = cheapest;
|
|
|
|
|
path.add(cheapest);
|
|
|
|
|
}
|
|
|
|
|
if(obstructed) {
|
|
|
|
|
return path;
|
|
|
|
|
}else {
|
|
|
|
|
ArrayList<Vector3fImmutable> goalPath = new ArrayList<>();
|
|
|
|
|
goalPath.add(goal);
|
|
|
|
|
goalPath.add(start);
|
|
|
|
|
return goalPath; //if the path isn't obstructed we can walk directly from start to the goal
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static float getCost(Vector3fImmutable point, Vector3fImmutable start, Vector3fImmutable goal) {
|
|
|
|
|
float gCost = start.distanceSquared(point);
|
|
|
|
|
float hCost = goal.distanceSquared(point);
|
|
|
|
|
return gCost + hCost;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static boolean pointIsBlocked(Vector3fImmutable point) {
|
|
|
|
|
|
|
|
|
|
Building building = BuildingManager.getBuildingAtLocation(point);
|
2023-10-26 20:12:38 -05:00
|
|
|
if(building == null)
|
2023-10-26 20:04:11 -05:00
|
|
|
return false;//no building at this location means nothing obstructing the walking path
|
|
|
|
|
|
2023-10-28 00:22:27 -05:00
|
|
|
Regions region = Regions.getRegionAtLocation(point);
|
|
|
|
|
if(region != null && Math.abs(region.lerpY(point) - point.y) < stepHeight) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-27 20:03:15 -05:00
|
|
|
Zone currentZone = ZoneManager.findSmallestZone(point);
|
|
|
|
|
if(currentZone == null)
|
|
|
|
|
return false;
|
|
|
|
|
else
|
|
|
|
|
return currentZone.navMesh.contains(point.x,point.z);
|
|
|
|
|
//return false;
|
2023-10-26 20:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
2022-04-30 09:41:17 -04:00
|
|
|
}
|