2020-08-22 22:29:20 +02:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
using System;
|
2020-06-02 14:42:23 -04:00
|
|
|
|
using System.Linq;
|
2020-05-21 20:06:48 +02:00
|
|
|
|
using Content.Server.GameObjects.Components.Mobs;
|
2020-08-29 13:20:37 +02:00
|
|
|
|
using Content.Server.GameObjects.EntitySystems;
|
2020-08-24 20:47:17 +02:00
|
|
|
|
using Content.Server.Utility;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
using Content.Shared.GameObjects.Components.Instruments;
|
2020-06-24 02:21:20 +02:00
|
|
|
|
using Content.Shared.GameObjects.EntitySystems;
|
2020-09-01 12:34:53 +02:00
|
|
|
|
using Content.Shared.Interfaces;
|
2020-07-18 22:51:56 -07:00
|
|
|
|
using Content.Shared.Interfaces.GameObjects.Components;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
using Robust.Server.GameObjects;
|
|
|
|
|
|
using Robust.Server.GameObjects.Components.UserInterface;
|
|
|
|
|
|
using Robust.Server.Interfaces.GameObjects;
|
|
|
|
|
|
using Robust.Server.Interfaces.Player;
|
2020-05-22 11:13:34 +02:00
|
|
|
|
using Robust.Server.Player;
|
|
|
|
|
|
using Robust.Shared.Enums;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-08-29 13:20:37 +02:00
|
|
|
|
using Robust.Shared.GameObjects.Systems;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
using Robust.Shared.Interfaces.Network;
|
2020-06-02 14:42:23 -04:00
|
|
|
|
using Robust.Shared.Interfaces.Timing;
|
2020-05-21 20:06:48 +02:00
|
|
|
|
using Robust.Shared.IoC;
|
2020-04-20 10:36:02 +01:00
|
|
|
|
using Robust.Shared.Players;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.GameObjects.Components.Instruments
|
|
|
|
|
|
{
|
2020-06-02 14:42:23 -04:00
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
[ComponentReference(typeof(IActivate))]
|
2020-06-02 14:42:23 -04:00
|
|
|
|
public class InstrumentComponent
|
|
|
|
|
|
: SharedInstrumentComponent,
|
|
|
|
|
|
IDropped,
|
|
|
|
|
|
IHandSelected,
|
|
|
|
|
|
IHandDeselected,
|
|
|
|
|
|
IActivate,
|
|
|
|
|
|
IUse,
|
|
|
|
|
|
IThrown
|
2019-11-25 00:11:47 +01:00
|
|
|
|
{
|
2020-08-22 22:29:20 +02:00
|
|
|
|
[Dependency] private readonly IGameTiming _gameTiming = default!;
|
2020-05-21 20:06:48 +02:00
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
private static readonly TimeSpan OneSecAgo = TimeSpan.FromSeconds(-1);
|
2020-05-20 15:15:17 +02:00
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The client channel currently playing the instrument, or null if there's none.
|
|
|
|
|
|
/// </summary>
|
2020-05-21 15:20:37 +02:00
|
|
|
|
[ViewVariables]
|
2020-08-22 22:29:20 +02:00
|
|
|
|
private IPlayerSession? _instrumentPlayer;
|
2020-06-02 14:42:23 -04:00
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
private bool _handheld;
|
|
|
|
|
|
|
2020-05-20 17:13:49 +02:00
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
private bool _playing = false;
|
|
|
|
|
|
|
2020-05-21 15:20:37 +02:00
|
|
|
|
[ViewVariables]
|
2020-05-20 15:15:17 +02:00
|
|
|
|
private float _timer = 0f;
|
2020-05-20 17:13:49 +02:00
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
[ViewVariables(VVAccess.ReadOnly)]
|
|
|
|
|
|
private TimeSpan _lastMeasured = TimeSpan.MinValue;
|
|
|
|
|
|
|
2020-05-21 15:20:37 +02:00
|
|
|
|
[ViewVariables]
|
2020-05-21 19:18:10 +02:00
|
|
|
|
private int _batchesDropped = 0;
|
|
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
private int _laggedBatches = 0;
|
|
|
|
|
|
|
2020-05-21 19:18:10 +02:00
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
private uint _lastSequencerTick = 0;
|
2020-05-21 15:20:37 +02:00
|
|
|
|
|
2020-05-20 17:13:49 +02:00
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
private int _midiEventCount = 0;
|
2020-05-20 15:15:17 +02:00
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Whether the instrument is an item which can be held or not.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public bool Handheld => _handheld;
|
|
|
|
|
|
|
2020-05-21 15:20:37 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Whether the instrument is currently playing or not.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public bool Playing
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _playing;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
_playing = value;
|
|
|
|
|
|
Dirty();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-08-22 22:29:20 +02:00
|
|
|
|
public IPlayerSession? InstrumentPlayer
|
2020-05-22 11:13:34 +02:00
|
|
|
|
{
|
|
|
|
|
|
get => _instrumentPlayer;
|
|
|
|
|
|
private set
|
|
|
|
|
|
{
|
|
|
|
|
|
Playing = false;
|
|
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
if (_instrumentPlayer != null)
|
2020-05-22 11:13:34 +02:00
|
|
|
|
_instrumentPlayer.PlayerStatusChanged -= OnPlayerStatusChanged;
|
|
|
|
|
|
|
|
|
|
|
|
_instrumentPlayer = value;
|
|
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
if (value != null)
|
2020-08-22 22:29:20 +02:00
|
|
|
|
_instrumentPlayer!.PlayerStatusChanged += OnPlayerStatusChanged;
|
2020-05-22 11:13:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-08-24 20:47:17 +02:00
|
|
|
|
[ViewVariables] private BoundUserInterface? UserInterface => Owner.GetUIOrNull(InstrumentUiKey.Key);
|
2020-08-22 22:29:20 +02:00
|
|
|
|
|
|
|
|
|
|
private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)
|
2020-05-22 11:13:34 +02:00
|
|
|
|
{
|
2020-06-25 15:01:46 +02:00
|
|
|
|
if (e.Session != _instrumentPlayer || e.NewStatus != SessionStatus.Disconnected) return;
|
|
|
|
|
|
InstrumentPlayer = null;
|
|
|
|
|
|
Clean();
|
2020-05-22 11:13:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
public override void Initialize()
|
|
|
|
|
|
{
|
|
|
|
|
|
base.Initialize();
|
2020-08-22 22:29:20 +02:00
|
|
|
|
|
|
|
|
|
|
if (UserInterface != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
UserInterface.OnClosed += UserInterfaceOnClosed;
|
|
|
|
|
|
}
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override void ExposeData(ObjectSerializer serializer)
|
|
|
|
|
|
{
|
|
|
|
|
|
base.ExposeData(serializer);
|
|
|
|
|
|
serializer.DataField(ref _handheld, "handheld", false);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-05-21 15:20:37 +02:00
|
|
|
|
public override ComponentState GetComponentState()
|
|
|
|
|
|
{
|
|
|
|
|
|
return new InstrumentState(Playing, _lastSequencerTick);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-08-22 22:29:20 +02:00
|
|
|
|
public override void HandleNetworkMessage(ComponentMessage message, INetChannel channel, ICommonSession? session = null)
|
2019-11-25 00:11:47 +01:00
|
|
|
|
{
|
2020-04-20 10:36:02 +01:00
|
|
|
|
base.HandleNetworkMessage(message, channel, session);
|
2020-04-26 00:53:09 +02:00
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
switch (message)
|
|
|
|
|
|
{
|
|
|
|
|
|
case InstrumentMidiEventMessage midiEventMsg:
|
2020-08-22 22:29:20 +02:00
|
|
|
|
if (!Playing || session != _instrumentPlayer || InstrumentPlayer == null) return;
|
2020-06-02 14:42:23 -04:00
|
|
|
|
|
|
|
|
|
|
var send = true;
|
|
|
|
|
|
|
|
|
|
|
|
var minTick = midiEventMsg.MidiEvent.Min(x => x.Tick);
|
|
|
|
|
|
if (_lastSequencerTick > minTick)
|
|
|
|
|
|
{
|
|
|
|
|
|
var now = _gameTiming.RealTime;
|
|
|
|
|
|
var oneSecAGo = now.Add(OneSecAgo);
|
|
|
|
|
|
if (_lastMeasured < oneSecAGo)
|
|
|
|
|
|
{
|
|
|
|
|
|
_lastMeasured = now;
|
|
|
|
|
|
_laggedBatches = 0;
|
|
|
|
|
|
_batchesDropped = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_laggedBatches++;
|
|
|
|
|
|
switch (_laggedBatches)
|
|
|
|
|
|
{
|
|
|
|
|
|
case (int) (MaxMidiLaggedBatches * (1 / 3d)) + 1:
|
2020-09-01 12:34:53 +02:00
|
|
|
|
Owner.PopupMessage(InstrumentPlayer.AttachedEntity,
|
2020-06-02 14:42:23 -04:00
|
|
|
|
"Your fingers are beginning to a cramp a little!");
|
|
|
|
|
|
break;
|
|
|
|
|
|
case (int) (MaxMidiLaggedBatches * (2 / 3d)) + 1:
|
2020-09-01 12:34:53 +02:00
|
|
|
|
Owner.PopupMessage(InstrumentPlayer.AttachedEntity,
|
2020-06-02 14:42:23 -04:00
|
|
|
|
"Your fingers are seriously cramping up!");
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (_laggedBatches > MaxMidiLaggedBatches)
|
|
|
|
|
|
{
|
|
|
|
|
|
send = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (++_midiEventCount > MaxMidiEventsPerSecond
|
|
|
|
|
|
|| midiEventMsg.MidiEvent.Length > MaxMidiEventsPerBatch)
|
|
|
|
|
|
{
|
|
|
|
|
|
var now = _gameTiming.RealTime;
|
|
|
|
|
|
var oneSecAGo = now.Add(OneSecAgo);
|
|
|
|
|
|
if (_lastMeasured < oneSecAGo)
|
|
|
|
|
|
{
|
|
|
|
|
|
_lastMeasured = now;
|
|
|
|
|
|
_laggedBatches = 0;
|
|
|
|
|
|
_batchesDropped = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_batchesDropped++;
|
|
|
|
|
|
|
|
|
|
|
|
send = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (send)
|
|
|
|
|
|
{
|
2020-05-20 17:48:36 +02:00
|
|
|
|
SendNetworkMessage(midiEventMsg);
|
2020-06-02 14:42:23 -04:00
|
|
|
|
}
|
2020-05-21 15:20:37 +02:00
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
var maxTick = midiEventMsg.MidiEvent.Max(x => x.Tick);
|
|
|
|
|
|
_lastSequencerTick = Math.Max(maxTick, minTick + 1);
|
2019-11-25 00:11:47 +01:00
|
|
|
|
break;
|
2020-05-20 15:15:17 +02:00
|
|
|
|
case InstrumentStartMidiMessage startMidi:
|
2020-06-25 15:01:46 +02:00
|
|
|
|
if (session != _instrumentPlayer)
|
|
|
|
|
|
break;
|
2020-05-21 15:20:37 +02:00
|
|
|
|
Playing = true;
|
2020-05-20 15:15:17 +02:00
|
|
|
|
break;
|
|
|
|
|
|
case InstrumentStopMidiMessage stopMidi:
|
2020-06-25 15:01:46 +02:00
|
|
|
|
if (session != _instrumentPlayer)
|
|
|
|
|
|
break;
|
2020-05-21 15:20:37 +02:00
|
|
|
|
Playing = false;
|
2020-06-02 14:42:23 -04:00
|
|
|
|
Clean();
|
2020-05-20 15:15:17 +02:00
|
|
|
|
break;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
private void Clean()
|
2019-11-25 00:11:47 +01:00
|
|
|
|
{
|
2020-05-21 15:20:37 +02:00
|
|
|
|
Playing = false;
|
2020-06-02 14:42:23 -04:00
|
|
|
|
_lastSequencerTick = 0;
|
|
|
|
|
|
_batchesDropped = 0;
|
|
|
|
|
|
_laggedBatches = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void Dropped(DroppedEventArgs eventArgs)
|
|
|
|
|
|
{
|
|
|
|
|
|
Clean();
|
2019-11-25 00:11:47 +01:00
|
|
|
|
SendNetworkMessage(new InstrumentStopMidiMessage());
|
2020-05-22 11:13:34 +02:00
|
|
|
|
InstrumentPlayer = null;
|
2020-08-22 22:29:20 +02:00
|
|
|
|
UserInterface?.CloseAll();
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void Thrown(ThrownEventArgs eventArgs)
|
|
|
|
|
|
{
|
2020-06-02 14:42:23 -04:00
|
|
|
|
Clean();
|
2019-11-25 00:11:47 +01:00
|
|
|
|
SendNetworkMessage(new InstrumentStopMidiMessage());
|
2020-05-22 11:13:34 +02:00
|
|
|
|
InstrumentPlayer = null;
|
2020-08-22 22:29:20 +02:00
|
|
|
|
UserInterface?.CloseAll();
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void HandSelected(HandSelectedEventArgs eventArgs)
|
|
|
|
|
|
{
|
2020-09-01 03:08:32 +02:00
|
|
|
|
if (eventArgs.User == null || !eventArgs.User.TryGetComponent(out BasicActorComponent? actor))
|
|
|
|
|
|
return;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
|
2020-09-01 03:08:32 +02:00
|
|
|
|
var session = actor.playerSession;
|
|
|
|
|
|
|
|
|
|
|
|
if (session.Status != SessionStatus.InGame) return;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
|
2020-05-22 11:13:34 +02:00
|
|
|
|
InstrumentPlayer = session;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void HandDeselected(HandDeselectedEventArgs eventArgs)
|
|
|
|
|
|
{
|
2020-06-02 14:42:23 -04:00
|
|
|
|
Clean();
|
2019-11-25 00:11:47 +01:00
|
|
|
|
SendNetworkMessage(new InstrumentStopMidiMessage());
|
2020-08-22 22:29:20 +02:00
|
|
|
|
UserInterface?.CloseAll();
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void Activate(ActivateEventArgs eventArgs)
|
|
|
|
|
|
{
|
2020-08-22 22:29:20 +02:00
|
|
|
|
if (Handheld || !eventArgs.User.TryGetComponent(out IActorComponent? actor)) return;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
if (InstrumentPlayer != null) return;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
|
2020-05-22 11:13:34 +02:00
|
|
|
|
InstrumentPlayer = actor.playerSession;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
OpenUserInterface(actor.playerSession);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public bool UseEntity(UseEntityEventArgs eventArgs)
|
|
|
|
|
|
{
|
2020-08-22 22:29:20 +02:00
|
|
|
|
if (!eventArgs.User.TryGetComponent(out IActorComponent? actor)) return false;
|
2019-11-25 00:11:47 +01:00
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
if (InstrumentPlayer == actor.playerSession)
|
|
|
|
|
|
{
|
2019-11-25 00:11:47 +01:00
|
|
|
|
OpenUserInterface(actor.playerSession);
|
2020-06-02 14:42:23 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-26 00:53:09 +02:00
|
|
|
|
private void UserInterfaceOnClosed(IPlayerSession player)
|
2019-11-25 00:11:47 +01:00
|
|
|
|
{
|
2020-06-02 14:42:23 -04:00
|
|
|
|
if (Handheld || player != InstrumentPlayer) return;
|
|
|
|
|
|
|
|
|
|
|
|
Clean();
|
|
|
|
|
|
InstrumentPlayer = null;
|
|
|
|
|
|
SendNetworkMessage(new InstrumentStopMidiMessage());
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void OpenUserInterface(IPlayerSession session)
|
|
|
|
|
|
{
|
2020-09-13 05:03:22 -07:00
|
|
|
|
UserInterface?.Toggle(session);
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
2020-05-20 15:15:17 +02:00
|
|
|
|
|
|
|
|
|
|
public override void Update(float delta)
|
|
|
|
|
|
{
|
|
|
|
|
|
base.Update(delta);
|
2020-05-20 17:13:49 +02:00
|
|
|
|
|
2020-05-22 11:13:34 +02:00
|
|
|
|
if (_instrumentPlayer != null && !ActionBlockerSystem.CanInteract(_instrumentPlayer.AttachedEntity))
|
2020-06-02 14:42:23 -04:00
|
|
|
|
{
|
2020-05-22 11:13:34 +02:00
|
|
|
|
InstrumentPlayer = null;
|
2020-06-25 15:01:46 +02:00
|
|
|
|
Clean();
|
2020-08-22 22:29:20 +02:00
|
|
|
|
UserInterface?.CloseAll();
|
2020-06-02 14:42:23 -04:00
|
|
|
|
}
|
2020-05-22 11:13:34 +02:00
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
if ((_batchesDropped >= MaxMidiBatchDropped
|
|
|
|
|
|
|| _laggedBatches >= MaxMidiLaggedBatches)
|
|
|
|
|
|
&& InstrumentPlayer != null)
|
2020-05-21 19:18:10 +02:00
|
|
|
|
{
|
2020-05-22 11:13:34 +02:00
|
|
|
|
var mob = InstrumentPlayer.AttachedEntity;
|
|
|
|
|
|
|
2020-06-02 14:42:23 -04:00
|
|
|
|
SendNetworkMessage(new InstrumentStopMidiMessage());
|
|
|
|
|
|
Playing = false;
|
|
|
|
|
|
|
2020-08-22 22:29:20 +02:00
|
|
|
|
UserInterface?.CloseAll();
|
2020-05-22 11:13:34 +02:00
|
|
|
|
|
2020-08-22 22:29:20 +02:00
|
|
|
|
if (mob != null && mob.TryGetComponent(out StunnableComponent? stun))
|
2020-06-02 14:42:23 -04:00
|
|
|
|
{
|
2020-05-21 20:06:48 +02:00
|
|
|
|
stun.Stun(1);
|
2020-06-02 14:42:23 -04:00
|
|
|
|
Clean();
|
|
|
|
|
|
}
|
2020-05-21 20:06:48 +02:00
|
|
|
|
else
|
2020-06-02 14:42:23 -04:00
|
|
|
|
{
|
2020-08-29 13:20:37 +02:00
|
|
|
|
EntitySystem.Get<StandingStateSystem>().DropAllItemsInHands(mob, false);
|
2020-06-02 14:42:23 -04:00
|
|
|
|
}
|
2020-05-21 20:06:48 +02:00
|
|
|
|
|
2020-05-22 11:13:34 +02:00
|
|
|
|
InstrumentPlayer = null;
|
|
|
|
|
|
|
2020-09-01 12:34:53 +02:00
|
|
|
|
Owner.PopupMessage(mob, "Your fingers cramp up from playing!");
|
2020-05-21 19:18:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-05-20 17:13:49 +02:00
|
|
|
|
_timer += delta;
|
|
|
|
|
|
if (_timer < 1) return;
|
2020-06-02 14:42:23 -04:00
|
|
|
|
|
2020-05-20 17:13:49 +02:00
|
|
|
|
_timer = 0f;
|
|
|
|
|
|
_midiEventCount = 0;
|
2020-05-20 15:15:17 +02:00
|
|
|
|
}
|
2020-06-02 14:42:23 -04:00
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|
2020-06-02 14:42:23 -04:00
|
|
|
|
|
2019-11-25 00:11:47 +01:00
|
|
|
|
}
|